/** * 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 { CFSavedInstrumentMeta } from './cFSavedInstrumentMeta'; export declare class CFFetchAllSavedInstruments { /** * customer_id for which the instrument was saved */ 'customerId'?: string; /** * cf_payment_id of the successful transaction done while saving instrument */ 'afaReference'?: number; /** * saved instrument id */ 'instrumentId'?: string; /** * Type of the saved instrument */ 'instrumentType'?: CFFetchAllSavedInstruments.InstrumentTypeEnum; /** * Unique id for the saved instrument */ 'instrumentUid'?: string; /** * masked card number displayed to the customer */ 'instrumentDisplay'?: string; /** * status of the saved instrument */ 'instrumentStatus'?: CFFetchAllSavedInstruments.InstrumentStatusEnum; /** * timestamp at which instrument was saved */ 'createdAt'?: string; 'instrumentMeta'?: CFSavedInstrumentMeta; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace CFFetchAllSavedInstruments { enum InstrumentTypeEnum { Card } enum InstrumentStatusEnum { Active, Inactive } }