|
| 1 | +/* |
| 2 | + * The version of the OpenAPI document: v4 |
| 3 | + * |
| 4 | + * |
| 5 | + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). |
| 6 | + * https://openapi-generator.tech |
| 7 | + * Do not edit this class manually. |
| 8 | + */ |
| 9 | + |
| 10 | +import { Amount } from "./amount"; |
| 11 | + |
| 12 | + |
| 13 | +export class InterchangeData { |
| 14 | + "interchangeAmount"?: Amount | null; |
| 15 | + /** |
| 16 | + * A 3-character alphanumeric code assigned by Visa that identifies the specific interchange reimbursement program a transaction qualified for. The code is assigned based on the card type, entry mode, and security data provided. |
| 17 | + */ |
| 18 | + "interchangeRateIndicator"?: string; |
| 19 | + /** |
| 20 | + * The type of events data. Possible values: - **interchangeData**: information about the interchange fee applied to a transaction. |
| 21 | + */ |
| 22 | + "type": InterchangeData.TypeEnum; |
| 23 | + |
| 24 | + static readonly discriminator: string | undefined = undefined; |
| 25 | + |
| 26 | + static readonly mapping: {[index: string]: string} | undefined = undefined; |
| 27 | + |
| 28 | + static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ |
| 29 | + { |
| 30 | + "name": "interchangeAmount", |
| 31 | + "baseName": "interchangeAmount", |
| 32 | + "type": "Amount | null", |
| 33 | + "format": "" |
| 34 | + }, |
| 35 | + { |
| 36 | + "name": "interchangeRateIndicator", |
| 37 | + "baseName": "interchangeRateIndicator", |
| 38 | + "type": "string", |
| 39 | + "format": "" |
| 40 | + }, |
| 41 | + { |
| 42 | + "name": "type", |
| 43 | + "baseName": "type", |
| 44 | + "type": "InterchangeData.TypeEnum", |
| 45 | + "format": "" |
| 46 | + } ]; |
| 47 | + |
| 48 | + static getAttributeTypeMap() { |
| 49 | + return InterchangeData.attributeTypeMap; |
| 50 | + } |
| 51 | + |
| 52 | + public constructor() { |
| 53 | + } |
| 54 | +} |
| 55 | + |
| 56 | +export namespace InterchangeData { |
| 57 | + export enum TypeEnum { |
| 58 | + InterchangeData = 'interchangeData' |
| 59 | + } |
| 60 | +} |
0 commit comments