import { AuditObject } from './AuditObject'; import { InterceptOption } from './InterceptOption'; import { Risk } from './order/Risk'; import { Status } from './order/Status'; import { WhitePagesThresholdStatus } from './WhitePagesThresholdStatus'; export declare class Profile extends AuditObject { constructor(partial?: Partial); id?: string; timezone: string; interceptPaymentCapture: InterceptOption; emailOnCancel: boolean; validOrderThreshold: number; remarketingThreshold: number; lowRiskScoreThreshold: number; highRiskScoreThreshold: number; whitePagesThresholdStatus: WhitePagesThresholdStatus; whitePagesLowRiskScoreThreshold: number; whitePagesHighRiskScoreThreshold: number; customerVerificationDeniedRisk?: Risk; customerVerificationDeniedStatus?: Status; customerVerificationApprovedRisk?: Risk; customerVerificationApprovedStatus?: Status; customerVerificationEmailSubject?: string | null; customerVerificationEmailBody?: string | null; customerVerificationSupportName?: string | null; customerVerificationSupportEmail?: string | null; customerVerificationSupportPhone?: string | null; customerVerificationExpirationWindow?: number | null; customerVerificationAutoCancelWindow?: number | null; customerVerificationTestSent?: Date; merchantLogoUrl?: string | null; isMigratedToEkataExtensionFramework: boolean; isMigratedToVerifiExtensionFramework: boolean; settings?: Object; }