PayuPaymentMethod
Type: schema
TypeScript Definition
typescript
PayuPaymentMethod: {{
payment_method?: string;
code?: string;
is_subscription_enabled?: boolean;
options?: {
name?: string;
icon_url?: string;
pg?: string;
bankcode?: string;
is_subscription_enabled?: boolean;
}[];
};
/** JuspaySavedCard */
}OpenAPI Schema
json
{
"title": "PayuPaymentMethod",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/PayuPaymentMethod",
"description": "API reference for the PayuPaymentMethod schema"
},
"properties": {
"payment_method": {
"type": "string"
},
"code": {
"type": "string"
},
"is_subscription_enabled": {
"type": "boolean"
},
"options": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"icon_url": {
"type": "string"
},
"pg": {
"type": "string"
},
"bankcode": {
"type": "string"
},
"is_subscription_enabled": {
"type": "boolean"
}
}
}
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions