/** * Represents a SubscriptionPeriods in Autotask. * Corresponds to the Autotask entity "SubscriptionPeriods". */ export interface SubscriptionPeriods { /** * Autotask field: id * Data Type: long * Required: true * Readonly: true */ readonly id: number; /** * Autotask field: periodCost * Data Type: decimal * Required: true * Readonly: true */ readonly periodCost: number; /** * Autotask field: periodDate * Data Type: datetime * Required: true * Readonly: false */ periodDate: string; /** * Autotask field: periodPrice * Data Type: decimal * Required: true * Readonly: true */ readonly periodPrice: number; /** * Autotask field: postedDate * Data Type: datetime * Required: false * Readonly: false */ postedDate?: string; /** * Autotask field: purchaseOrderNumber * Data Type: string * Length: 50 * Required: false * Readonly: true */ readonly purchaseOrderNumber?: string; /** * Autotask field: subscriptionID * Data Type: integer * Required: true * Readonly: true * Reference to: Subscription */ readonly subscriptionID: number; } //# sourceMappingURL=SubscriptionPeriods.d.ts.map