Type alias NftSetUpdateInput

NftSetUpdateInput: {
    attributes?: InputMaybe<Scalars["JSONObject"]>;
    fileIds?: InputMaybe<InputMaybe<Scalars["String"]>[]>;
    metadata?: InputMaybe<Scalars["JSONObject"]>;
    tags?: InputMaybe<InputMaybe<Scalars["String"]>[]>;
    title?: InputMaybe<Scalars["String"]>;
}

The input to update an NFTSet.

Type declaration

  • Optional attributes?: InputMaybe<Scalars["JSONObject"]>

    A mapping of attributes for this resource. These will be stored in the Niftory API but will not be added to the blockchain.

  • Optional fileIds?: InputMaybe<InputMaybe<Scalars["String"]>[]>

    The list of ids of the uploaded metadata File. This can be created using createFileUploadUrl.

  • Optional metadata?: InputMaybe<Scalars["JSONObject"]>

    Metadata that will be added to the blockchain

  • Optional tags?: InputMaybe<InputMaybe<Scalars["String"]>[]>

    String labels to tag this NFTSet with. These will be stored in the Niftory API but will not be added to the blockchain. Updating this will replace the existing tags.

  • Optional title?: InputMaybe<Scalars["String"]>

    The user-friendly title for this set.

Generated using TypeDoc