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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { ShipmentService } from '../constants/shipment_services.js';
import { Entity } from '../entity.js';
import { Address } from './address.js';
import { Company } from './company.js';
import { CountryTax } from './country_tax.js';
import { Product } from './product.js';
import { ShipmentMethodVariation } from './shipment_method_variation.js';
export class ShipmentMethod extends Entity {
protected static resourceName = 'shipment_methods';
protected static singularName = 'shipmentMethod';
protected static pluralName = 'shipmentMethods';
@ShipmentMethod.property()
public id?: number;
@ShipmentMethod.property()
public name?: string;
@ShipmentMethod.property({type: ShipmentService})
public shipmentService?: ShipmentService | null;
@ShipmentMethod.property({type: Address})
public originAddress?: Address | null;
@ShipmentMethod.property()
public pickUp?: boolean;
@ShipmentMethod.property({type: Company})
public company?: Company | null;
@ShipmentMethod.property()
public companyDefault?: boolean;
@ShipmentMethod.property()
public defaultCost?: number;
@ShipmentMethod.property()
public currency?: string;
@ShipmentMethod.property()
public buyCost?: number;
@ShipmentMethod.property()
public buyCurrency?: string;
@ShipmentMethod.property({type: Number})
public transportCompany?: number | null;
@ShipmentMethod.property()
public transportCompanyName?: string;
@ShipmentMethod.property({type: CountryTax})
public taxType?: CountryTax | null;
@ShipmentMethod.property({arrayType: 'ShipmentMethodVariation'})
public variations?: ShipmentMethodVariation[];
@ShipmentMethod.property({arrayType: 'Product'})
public products?: Product[];
}
|