Properties
| Name | Type | Description |
|---|---|---|
| paymentMethodBrandType | string | The payment method brand, such as Visa or PayPal. For implementation help, refer to eBay API documentation |
| logoImage | object | The details of the logo image, such as the size and URL. Note: Currently, only the imageUrl is populated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaymentMethodBrand",
"title": "PaymentMethodBrand",
"type": "object",
"properties": {
"paymentMethodBrandType": {
"type": "string",
"description": "The payment method brand, such as Visa or PayPal. For implementation help, refer to <a href='https://developer.ebay.com/api-docs/buy/browse/types/gct:PaymentMethodBrandEnum'>eBay API documentation</a>"
},
"logoImage": {
"description": "The details of the logo image, such as the size and URL.<br><br><span class=\"tablenote\"> <b> Note: </b> Currently, only the <b>imageUrl</b> is populated.</span>",
"$ref": "#/components/schemas/Image"
}
}
}