# ShippingMethod Describes a shipping method available for orders, including its title, description, and visual representation. ## Type Definition ```graphql type ShippingMethod { title: String shortDescription: String description: String logo: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | title | String | Returns the title. | | shortDescription | String | Returns the short description. | | description | String | Returns the description. | | logo | String | Returns the logo. | ## Relationships ShippingMethod is a standalone type that represents shipping method information. It is typically returned as part of shipping-related queries or mutations that provide order fulfillment options to customers. ## Example ```graphql { title shortDescription description logo } ``` ## Implements This type does not implement any interfaces. ## Related Types No related types.