Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { Company } from './company.js';
import { Entity } from '../entity.js';
export class AutomaticPaymentRelationship extends Entity {
protected static resourceName = 'automatic_payment_relationships';
protected static singularName = 'automaticPaymentRelationship';
protected static pluralName = 'automaticPaymentRelationships';
@AutomaticPaymentRelationship.property({type: Date})
public archived?: Date | null;
@AutomaticPaymentRelationship.property()
public id?: number;
@AutomaticPaymentRelationship.property()
public creationDate?: Date;
@AutomaticPaymentRelationship.property()
public allowPostPayment?: boolean;
@AutomaticPaymentRelationship.property({type: Company})
public companyCustomer?: Company;
@AutomaticPaymentRelationship.property({type: Company})
public companySupplier?: Company;
@AutomaticPaymentRelationship.property({type: String})
public stripeCustomerId?: string;
}
|