/** * Finix API */ import { DisputeEvidenceLinks } from './disputeEvidenceLinks'; export declare class ApplePaySession { /** * The ID of the `apple_pay_session` resource. */ 'id'?: string; /** * Timestamp of when the object was created. */ 'createdAt'?: Date; /** * Timestamp of when the object was last updated. */ 'updatedAt'?: Date; /** * Details about the `apple_pay_session` that was created. */ 'sessionDetails'?: string; 'links'?: DisputeEvidenceLinks; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }