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