/**
 * This data class represents a customer's subscription journey state
 */
export type CustomerJourneyState = {
    former_subscriber: boolean;
    in_grace_period: boolean;
    in_trial_period: boolean;
    in_intro_offer_period: boolean;
    is_cancelled: boolean;
    in_pause: boolean;
    in_account_hold: boolean;
};
/**
 * This data class represents a device's profile
 */
export type DeviceProfile = {
    customer_journey_state: CustomerJourneyState;
};
