Type alias NftModelUpdateInput

NftModelUpdateInput: {
    attributes?: InputMaybe<Scalars["JSONObject"]>;
    content?: InputMaybe<NftContentInput>;
    contentId?: InputMaybe<Scalars["ID"]>;
    description?: InputMaybe<Scalars["String"]>;
    metadata?: InputMaybe<Scalars["JSONObject"]>;
    quantity?: InputMaybe<Scalars["PositiveInt"]>;
    status?: InputMaybe<Status>;
    subtitle?: InputMaybe<Scalars["String"]>;
    tags?: InputMaybe<InputMaybe<Scalars["String"]>[]>;
    title?: InputMaybe<Scalars["String"]>;
}

The input to update an NFT model.

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 content?: InputMaybe<NftContentInput>

    The file content for this model. This can be updated until the NFTModel is minted.

  • Optional contentId?: InputMaybe<Scalars["ID"]>

    The ID of the NFTContent for this model.

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

    The user-friendly details about this model. This will be added to the blockchain metadata when an NFT is minted.

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

    Metadata that will be added to the blockchain for any NFTs minted from this model. This can be updated until the NFTModel is minted

  • Optional quantity?: InputMaybe<Scalars["PositiveInt"]>

    The total supply of NFTs that can be available for this model. This can be updated until the NFTModel is minted.

  • Optional status?: InputMaybe<Status>

    The status of the model.

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

    The user-friendly subtitle for this model. This will be added to the blockchain metadata when an NFT is minted.

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

    String labels to tag this NFTModel 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 model. This will be added to the blockchain metadata when an NFT is minted.

Generated using TypeDoc