/** * Klaviyo API * The Klaviyo REST API. Please visit https://developers.klaviyo.com for more details. * * Contact: developers@klaviyo.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export declare class BulkProfileSuppressionsCreateJobResponseObjectResourceAttributes { /** * Status of the asynchronous job. */ 'status': BulkProfileSuppressionsCreateJobResponseObjectResourceAttributes.StatusEnum | 'cancelled' | 'complete' | 'processing' | 'queued'; /** * The date and time the job was created in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.mmmmmm). */ 'createdAt': Date; /** * The total number of operations to be processed by the job. See `completed_count` for the job\'s current progress. */ 'totalCount': number; /** * The total number of operations that have been completed by the job. */ 'completedCount'?: number | null; /** * Date and time the job was completed in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.mmmmmm). */ 'completedAt'?: Date | null; /** * The total number of profiles that have been skipped as part of the job. */ 'skippedCount'?: number | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace BulkProfileSuppressionsCreateJobResponseObjectResourceAttributes { enum StatusEnum { Cancelled, Complete, Processing, Queued } }