JuspayNetbankingPaymentMethod
Type: schema
TypeScript Definition
typescript
JuspayNetbankingPaymentMethod: {{
description: string;
juspay_bank_code: string;
juspay_bank_code_id: number;
payment_method: string;
/**
* @description discriminator enum property added by openapi-typescript
* @enum {string}
*/
payment_method_type: "NB";
pm_response_description: string;
supported_reference_ids: string[];
};
/** JusPayNewCard */
}OpenAPI Schema
json
{
"title": "JuspayNetbankingPaymentMethod",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/JuspayNetbankingPaymentMethod",
"description": "API reference for the JuspayNetbankingPaymentMethod 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"
},
"juspay_bank_code_id": {
"type": "integer"
},
"payment_method": {
"type": "string"
},
"payment_method_type": {
"type": "string",
"const": "NB"
},
"pm_response_description": {
"type": "string"
},
"supported_reference_ids": {
"type": "array",
"items": {
"type": "string"
}
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions