import { Defaults } from '../../defaults'; import { IShipmentOptions } from './iShipmentOptions'; export class GLSShipmentOptions implements IShipmentOptions { NAME = 'GLSShipmentOptions'; shipmentType: string = Defaults.String; username: string = Defaults.String; password: string = Defaults.String; addresseeType: string = Defaults.String; service: GLSExpressService = GLSExpressService.None; } export enum GLSExpressService { None, T9, T12, T17, S9, S12, S17 }