/** * Finix API */ export declare class CreateMerchantUnderwritingRequest { /** * Name of the gateway that processes the `Merchant\'s` card present transactions. Use `gateway` only to enable a merchantto accept card present transactions. */ 'gateway'?: CreateMerchantUnderwritingRequest.GatewayEnum | string; /** * Set the acquiring processor. Avalible values include: Use DUMMY_V1 or null to use your sandbox. For more details on which processor to use, reach out to your Finix point of contact or email Finix Support. */ 'processor': string | null; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace CreateMerchantUnderwritingRequest { enum GatewayEnum { TriposCloudV1, TriposMobileV1, ExpressV1 } }