# PaymentMethod A payment option available in the store, including title, description, and logo. ## Type Definition ```graphql type PaymentMethod { 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 PaymentMethod represents a payment option within the store's payment system. It provides metadata about available payment methods that customers can use during checkout, including presentation information such as title, descriptions, and branding elements. ## Example ```graphql query { paymentMethods { title shortDescription description logo } } ``` ## Implements This type does not implement any interfaces. ## Related Types No related types are specified for this object.