/** * Finix API */ /** * Details used to fille out the PCI Self-Assessment Questionnaire. */ export declare class UpdateComplianceFormRequestPciSaqA { /** * IP address of the person attesting to this `compliance_form`. */ 'ipAddress'?: string; /** * Name of the person completing (aka attesting to) the `compliance_form`. */ 'name'?: string; /** * Timestamp of the person attesting to this `compliance_form`. */ 'signedAt'?: string; /** * Title or role of the person completing (aka attesting to) the `compliance_form`. */ 'title'?: string; /** * User agent of the person attesting to this `compliance_form`. */ 'userAgent'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }