Type alias UpdateNftListingInput

UpdateNftListingInput: {
    attributes?: InputMaybe<Scalars["JSONObject"]>;
    description?: InputMaybe<Scalars["String"]>;
    nftModelId?: InputMaybe<Scalars["ID"]>;
    price?: InputMaybe<Scalars["PositiveFloat"]>;
    state?: InputMaybe<ListingState>;
    title?: InputMaybe<Scalars["String"]>;
}

The input to update an NFTListing.

Type declaration

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

    The metadata for this listing in JSON format

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

    The description of the listing

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

    The ID of the NFTModel to list for sale in this NFT listing.

  • Optional price?: InputMaybe<Scalars["PositiveFloat"]>

    The price of the NFTlisting. Must be greater than 0.

  • Optional state?: InputMaybe<ListingState>

    The status of the NFTListing, example - HIDE_IN_STORE, SHOW_IN_STORE

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

    The title of the listing

Generated using TypeDoc