xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
34 lines (33 loc) • 906 B
TypeScript
import { Price } from '././price';
import { Product } from '././product';
export declare class SubscriptionItem {
/**
* Date when the subscription to this product will end
*/
'endDate'?: Date;
/**
* The unique identifier of the subscription item.
*/
'id': string;
'price': Price;
'product': Product;
/**
* Date the subscription started, or will start. Note: this could be in the future for downgrades or reduced number of seats that haven\'t taken effect yet.
*/
'startDate': Date;
/**
* If the subscription is a test subscription
*/
'testMode'?: boolean;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}