/* tslint:disable */ /* eslint-disable */ /** * cards * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The details of the linked financial transaction triggered by the card transaction. */ export interface LinkedTransaction { /** * The encodedKey of the linked financial transaction. */ linkedTransactionKey?: string; /** * Represents the type of the account. */ linkedTransactionType?: LinkedTransactionLinkedTransactionTypeEnum; } export const LinkedTransactionLinkedTransactionTypeEnum = { Loan: 'LOAN', Deposit: 'DEPOSIT', } as const; export type LinkedTransactionLinkedTransactionTypeEnum = (typeof LinkedTransactionLinkedTransactionTypeEnum)[keyof typeof LinkedTransactionLinkedTransactionTypeEnum];