export const post = { ReturnsManagementShipment: { SenderInformation: { Address: { Name: 'Aaron Summer', StreetNumber: 328, StreetName: 'W Hastings St', City: 'Vancouver', Province: 'BC', Country: 'CA', PostalCode: 'V6B1K6', PhoneNumber: { CountryCode: 1, AreaCode: 905, Phone: 5555555, } } }, ReceiverInformation: { Address: { Name: 'Sender Name', Company: 'Purolator Ltd', Department: 'Web Services', StreetNumber: 1234, StreetName: 'Main Street', City: 'Mississauga', Province: 'ON', Country: 'CA', PostalCode: 'L4W5M8', PhoneNumber: { CountryCode: 1, AreaCode: 905, Phone: 5555555, } } }, PackageInformation: { ServiceID: 'PurolatorExpress', TotalWeight: { Value: 10, WeightUnit: 'lb' }, TotalPieces: 1 }, PaymentInformation: { PaymentType: 'Sender', RegisteredAccountNumber: process.env.PURO_ACC, BillingAccountNumber: process.env.PURO_ACC }, PickupInformation: { PickupType: 'DropOff' } }, PrinterType: 'Thermal' }; export const validate = { ReturnsManagementShipment: { SenderInformation: { Address: { Name: 'Aaron Summer', StreetNumber: 328, StreetName: 'W Hastings St', City: 'Vancouver', Province: 'BC', Country: 'CA', PostalCode: 'V6B1K6', PhoneNumber: { CountryCode: 1, AreaCode: 905, Phone: 5555555, } } }, ReceiverInformation: { Address: { Name: 'Sender Name', Company: 'Purolator Ltd', Department: 'Web Services', StreetNumber: 1234, StreetName: 'Main Street', City: 'Mississauga', Province: 'ON', Country: 'CA', PostalCode: 'L4W5M8', PhoneNumber: { CountryCode: 1, AreaCode: 905, Phone: 5555555, } } }, PackageInformation: { ServiceID: 'PurolatorExpress', TotalWeight: { Value: 10, WeightUnit: 'lb' }, TotalPieces: 1 }, PaymentInformation: { PaymentType: 'Sender', RegisteredAccountNumber: process.env.PURO_ACC, BillingAccountNumber: process.env.PURO_ACC }, PickupInformation: { PickupType: 'DropOff' }, TrackingReferenceInformation: { Reference1: 'RMA123' }, ProactiveNotification: { RequestorName: 'My name', RequestorEmail: 'test@test.com', Subscriptions: { Subscription: { Name: 'MyName', Email: 'test@test.com', NotifyWhenExceptionOccurs: true, NotifyWhenDeliveryOccurs: true } } } } };