Type alias CreateNftListingInput

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

The input to create 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

  • nftModelId: Scalars["ID"]

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

  • price: 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