/** * Represents a ContactBillingProductAssociations in Autotask. * Corresponds to the Autotask entity "ContactBillingProductAssociations". */ export interface ContactBillingProductAssociations { /** * Autotask field: billingProductID * Data Type: integer * Required: true * Readonly: true * Reference to: Product */ readonly billingProductID: number; /** * Autotask field: contactID * Data Type: integer * Required: true * Readonly: true * Reference to: Contact */ readonly contactID: number; /** * Autotask field: effectiveDate * Data Type: datetime * Required: true * Readonly: false */ effectiveDate: string; /** * Autotask field: expirationDate * Data Type: datetime * Required: false * Readonly: false */ expirationDate?: string; /** * Autotask field: id * Data Type: long * Required: true * Readonly: true */ readonly id: number; } //# sourceMappingURL=ContactBillingProductAssociations.d.ts.map