JuspayPaymentMethod
Type: schema
TypeScript Definition
typescript
JuspayPaymentMethod: {{
id: string;
name: string;
payment_instructions?: string | null;
type: string;
payment_provider_slug: string;
details: components["schemas"]["JuspayPaymentMethodDetail"][];
order_params?: Record<string, never>;
};
/** JuspayPaymentMethodDetail */
}Component References
| Reference | Resolves To |
|---|---|
components["schemas"]["JuspayPaymentMethodDetail"] | JuspayPaymentMethodDetail |
OpenAPI Schema
json
{
"title": "JuspayPaymentMethod",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/JuspayPaymentMethod",
"description": "API reference for the JuspayPaymentMethod schema"
},
"required": [
"id",
"name",
"type",
"payment_provider_slug",
"details"
],
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"payment_instructions": {
"type": [
"string",
"null"
]
},
"type": {
"type": "string"
},
"payment_provider_slug": {
"type": "string"
},
"details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/JuspayPaymentMethodDetail"
}
},
"order_params": {
"type": "object"
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions