/** * Finix API */ export declare class Name { /** * The first name of the `Payment Instrument` owner. */ 'firstName'?: string; /** * The full name of the `Payment Instrument` owner. */ 'fullName'?: string; /** * The last name of the `Payment Instrument` owner. */ 'lastName'?: string; 'value'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }