PaymentMethod
A payment option available in the store, including title, description, and logo.
Type Definition
type PaymentMethod {
title: String
shortDescription: String
description: String
logo: String
}Fields
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
query {
paymentMethods {
title
shortDescription
description
logo
}
}Implements
This type does not implement any interfaces.
Related Types
No related types are specified for this object.