/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { CollectionMethod } from './collectionMethod';
import { SubscriptionGroupPaymentProfile } from './subscriptionGroupPaymentProfile';
export interface SubscriptionGroup {
    customerId?: number;
    paymentProfile?: SubscriptionGroupPaymentProfile;
    /** The type of payment collection to be used in the subscription. For legacy Statements Architecture valid options are - `invoice`, `automatic`. For current Relationship Invoicing Architecture valid options are - `remittance`, `automatic`, `prepaid`. */
    paymentCollectionMethod?: CollectionMethod;
    subscriptionIds?: number[];
    createdAt?: string;
    [key: string]: unknown;
}
export declare const subscriptionGroupSchema: Schema<SubscriptionGroup>;
