/** * Finix API */ /** * Details used to fille out the PCI Self-Assessment Questionnaire (SAQ). */ export declare class ComplianceFormPciSaqA { /** * IP address of the person attesting to this `compliance_form`. */ 'ipAddress'?: string | null; /** * If all `pci_saq_a` fields are all submitted, `is_accepted` updates to **true**. */ 'isAccepted'?: boolean | null; /** * Name of the person completing (aka attesting to) the `compliance_form`. */ 'name'?: string | null; /** * Timestamp of the person attesting to this `compliance_form`. */ 'signedAt'?: string | null; /** * Title or role of the person completing (aka attesting to) the `compliance_form`. */ 'title'?: string | null; /** * User agent of the person attesting to this `compliance_form`. */ 'userAgent'?: string | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }