@maxio-com/advanced-billing-sdk
Version:
Ultimate billing and pricing flexibility for B2B SaaS. Maxio integrates directly into your product, so you can seamlessly manage your product catalog, bill customers, and collect payments.
17 lines • 773 B
TypeScript
/**
* 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>;
//# sourceMappingURL=groupTarget.d.ts.map