/**
 * @example
 *     {
 *         contact_id: "63a07ddf05a32042dffac965",
 *         subscription_id: "37846"
 *     }
 */
export interface DetachSubscriptionFromContactRequest {
    /** The unique identifier for the contact which is given by Intercom */
    contact_id: string;
    /** The unique identifier for the subscription type which is given by Intercom */
    subscription_id: string;
}
