/** * 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 CouponCodeResponseObjectResourceAttributes { /** * This is a unique string that will be or is assigned to each customer/profile and is associated with a coupon. */ 'uniqueCode'?: string | null; /** * The datetime when this coupon code will expire. If not specified or set to null, it will be automatically set to 1 year. */ 'expiresAt'?: Date | null; /** * The current status of the coupon code. */ 'status'?: CouponCodeResponseObjectResourceAttributes.StatusEnum | 'ASSIGNED_TO_PROFILE' | 'DELETING' | 'PROCESSING' | 'UNASSIGNED' | 'USED' | 'VERSION_NOT_ACTIVE' | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace CouponCodeResponseObjectResourceAttributes { enum StatusEnum { AssignedToProfile, Deleting, Processing, Unassigned, Used, VersionNotActive } }