JuspayUpiPaymentMethod
Type: schema
TypeScript Definition
typescript
JuspayUpiPaymentMethod: {{
description: string;
/** @enum {string} */
juspay_bank_code: "UPI_COLLECT" | "UPI_PAY" | "UPI_QR";
juspay_bank_code_id: number;
/** @enum {string} */
payment_method: "UPI_COLLECT" | "UPI_PAY" | "UPI_QR";
/**
* @description discriminator enum property added by openapi-typescript
* @enum {string}
*/
payment_method_type: "UPI";
pm_response_description: string;
supported_reference_ids: string[];
};
/** JuspayWalletPaymentMethod */
}OpenAPI Schema
json
{
"title": "JuspayUpiPaymentMethod",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/JuspayUpiPaymentMethod",
"description": "API reference for the JuspayUpiPaymentMethod schema"
},
"required": [
"description",
"juspay_bank_code",
"juspay_bank_code_id",
"payment_method",
"payment_method_type",
"pm_response_description",
"supported_reference_ids"
],
"properties": {
"description": {
"type": "string"
},
"juspay_bank_code": {
"type": "string",
"enum": [
"UPI_COLLECT",
"UPI_PAY",
"UPI_QR"
]
},
"juspay_bank_code_id": {
"type": "integer"
},
"payment_method": {
"type": "string",
"enum": [
"UPI_COLLECT",
"UPI_PAY",
"UPI_QR"
]
},
"payment_method_type": {
"type": "string",
"const": "UPI"
},
"pm_response_description": {
"type": "string"
},
"supported_reference_ids": {
"type": "array",
"items": {
"type": "string"
}
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions