> ## Documentation Index
> Fetch the complete documentation index at: https://redo-44af351d-docs-v3-graphql-api-reference.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# OrderShipping

> How an order ships: method, cost, and destination address.

<ResponseField name="address" type={<a href="/docs/api-reference/v3/reference/common/mailing-address">MailingAddress</a>}>
  The destination the order ships to.

  <Expandable title="fields" lazyRender>
    <ResponseField name="address1" type="String">
      The first line of the address (street and number).
    </ResponseField>

    <ResponseField name="address2" type="String">
      The second line of the address (apartment, suite, unit, etc.).
    </ResponseField>

    <ResponseField name="city" type="String">
      The city, town, or village.
    </ResponseField>

    <ResponseField name="country" type="String">
      The country.
    </ResponseField>

    <ResponseField name="postalCode" type="String">
      The postal or ZIP code.
    </ResponseField>

    <ResponseField name="province" type="String">
      The province, state, or region.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="cost" type={<a href="/docs/api-reference/v3/reference/common/money">Money</a>}>
  What the customer paid for shipping.

  <Expandable title="fields" lazyRender>
    <ResponseField name="amount" type={<a href="/docs/api-reference/v3/reference/common/decimal">Decimal!</a>} required>
      The exact amount as a decimal string (e.g. "19.99").
    </ResponseField>

    <ResponseField name="currency" type="String!" required>
      ISO 4217 currency code (e.g. USD).
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="method" type="String">
  The selected shipping method's name, e.g. Standard.
</ResponseField>
