Artion GraphQL API
  • Getting Started
  • Installation
  • Quickstart
  • GraphQL Schema Basics
  • GraphQL Schema
    • Schema Definition
    • Auxiliary Structures
    • Activity
    • Auction Trade
    • Banned NFT
    • Collection
    • Event
    • Follow
    • Listing Trade
    • Notification Settings
    • Offer Trade
    • Ownership
    • Random Trade
    • Shipping on Redeem
    • Token
    • Like
    • User
Powered by GitBook
On this page
  1. GraphQL Schema

Shipping on Redeem

Special type of tokens can be redeemed on Artion platform to get the underlying object.

# ShippingAddress represents user shipping address for tokens redeem.
type ShippingAddress {
    # Address of the user wallet
    user: Address!

    # Full name (in address)
    fullname: String!

    # Phone (for delivery)
    phone: String!

    # 1th line of address - Street address or P.O. Box
    street: String!

    # 2th line of address - Apt, suite, unit, building, floor...
    apartment: String!

    # City
    city: String!

    # State (for multi-states countries only)
    state: String!

    # Country
    country: String!

    # ZIP / Postal code
    zip: String!

    # Last modification time
    updated: Time!
}

# InputShippingAddress represents user shipping address for tokens redeem.
input InputShippingAddress {
    # Full name (in address)
    fullname: String!

    # Phone (for delivery)
    phone: String!

    # 1th line of address - Street address or P.O. Box
    street: String!

    # 2th line of address - Apt, suite, unit, building, floor...
    apartment: String!

    # City
    city: String!

    # State (for multi-states countries only)
    state: String!

    # Country
    country: String!

    # ZIP / Postal code
    zip: String!
}
PreviousRandom TradeNextToken

Last updated 3 years ago