Interface SubscriptionUserStatusResponse

interface SubscriptionUserStatusResponse {
    errors?: string[];
    message: string;
    total_count: number;
    users: {
        email: null | string;
        external_id: null | string;
        phone: null | string;
        subscription_groups: {
            channel: string;
            id: string;
            name: string;
            status: "Subscribed" | "Unsubscribed";
        }[];
    }[];
}

Properties

errors?: string[]
message: string
total_count: number
users: {
    email: null | string;
    external_id: null | string;
    phone: null | string;
    subscription_groups: {
        channel: string;
        id: string;
        name: string;
        status: "Subscribed" | "Unsubscribed";
    }[];
}[]