/**
 * @example
 *     {
 *         pid: "pid",
 *         memberContactIds: [1]
 *     }
 */
export interface SubscribeMemberToASubscriptionRequest {
    /** Loyalty Program ID. A unique identifier for the loyalty program. */
    pid: string;
    /** Required if LoyaltySubscriptionId is not provided, must be greater than 0 */
    contactId?: number;
    /** Required if ContactId is not provided, max length 64 */
    loyaltySubscriptionId?: string;
    /** Required, each item must be greater than or equal to 1 */
    memberContactIds: number[];
}
