# PaymentMethod Describes a payment method available for transactions, including its presentation details and branding information. ## 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 standalone payment option that can be used in checkout flows and payment-related queries. It contains presentation metadata for displaying payment options to users without referencing other types in the schema. ## Example ```graphql { paymentMethod { title shortDescription description logo } } ``` ## Implements No interfaces implemented. ## Related Types None.