/** * 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 { CFUPIAuthorizeDetails } from './cFUPIAuthorizeDetails'; export declare class CFUPI { /** * Specify the channel through which the payment must be processed. Can be one of [\"link\", \"collect\", \"qrcode\"] */ 'channel': CFUPI.ChannelEnum; /** * Customer UPI VPA to process payment. */ 'upiId': string; /** * For one time mandate on UPI. Set this as authorize_only = true. Please note that you can only use the \"collect\" channel if you are sending a one time mandate request */ 'authorizeOnly'?: boolean; 'authorization'?: CFUPIAuthorizeDetails; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace CFUPI { enum ChannelEnum { Link, Collect, Qrcode } }