/** * New Payment Gateway APIs * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2022-01-01 * Contact: nextgenapi@cashfree.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CFLinkCustomerDetailsEntity } from './cFLinkCustomerDetailsEntity'; import { CFLinkMetaEntity } from './cFLinkMetaEntity'; import { CFLinkNotifyEntity } from './cFLinkNotifyEntity'; export declare class CFLink { 'cfLinkId'?: number; 'linkId'?: string; 'linkStatus'?: string; 'linkCurrency'?: string; 'linkAmount'?: number; 'linkAmountPaid'?: number; 'linkPartialPayments'?: boolean; 'linkMinimumPartialAmount'?: number; 'linkPurpose'?: string; 'linkCreatedAt'?: string; 'customerDetails'?: CFLinkCustomerDetailsEntity; 'linkMeta'?: CFLinkMetaEntity; 'linkUrl'?: string; 'linkExpiryTime'?: string; /** * Key-value pair that can be used to store additional information about the entity. Maximum 5 key-value pairs */ 'linkNotes'?: { [key: string]: string; }; 'linkAutoReminders'?: boolean; 'linkNotify'?: CFLinkNotifyEntity; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }