/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { GroupTargetType } from './groupTargetType';
/** Attributes of the target customer who will be the responsible payer of the created subscription. Required. */
export interface GroupTarget {
    /** The type of object indicated by the id attribute. */
    type: GroupTargetType;
    /** The id of the target customer or subscription to group the existing subscription with. Ignored and should not be included if type is "self" , "parent", or "eldest" */
    id?: number;
    [key: string]: unknown;
}
export declare const groupTargetSchema: Schema<GroupTarget>;
