Type.registerNamespace('DaytonFreight.Web.Services');
DaytonFreight.Web.Services.ShippingServiceInterface=function() {
DaytonFreight.Web.Services.ShippingServiceInterface.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
DaytonFreight.Web.Services.ShippingServiceInterface.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.get_path();},
GetPackaging:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetPackaging',false,{},succeededCallback,failedCallback,userContext); },
GetShipmentClasses:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetShipmentClasses',false,{},succeededCallback,failedCallback,userContext); },
GetServiceCenterInformation:function(serviceCenterAbbreviation,succeededCallback, failedCallback, userContext) {
/// <param name="serviceCenterAbbreviation" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetServiceCenterInformation',false,{serviceCenterAbbreviation:serviceCenterAbbreviation},succeededCallback,failedCallback,userContext); },
GetBillOfLadingInformation:function(billOfLadingId,succeededCallback, failedCallback, userContext) {
/// <param name="billOfLadingId" type="Number">System.Int64</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetBillOfLadingInformation',false,{billOfLadingId:billOfLadingId},succeededCallback,failedCallback,userContext); },
CreatePickup:function(pickupInformation,succeededCallback, failedCallback, userContext) {
/// <param name="pickupInformation" type="ShippingService.PickupInformation">ShippingService.PickupInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'CreatePickup',false,{pickupInformation:pickupInformation},succeededCallback,failedCallback,userContext); },
UpdatePickup:function(pickupNumber,pickupInformation,succeededCallback, failedCallback, userContext) {
/// <param name="pickupNumber" type="String">System.String</param>
/// <param name="pickupInformation" type="ShippingService.PickupInformation">ShippingService.PickupInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'UpdatePickup',false,{pickupNumber:pickupNumber,pickupInformation:pickupInformation},succeededCallback,failedCallback,userContext); },
CancelPickup:function(pickupNumber,succeededCallback, failedCallback, userContext) {
/// <param name="pickupNumber" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'CancelPickup',false,{pickupNumber:pickupNumber},succeededCallback,failedCallback,userContext); },
CreateBillOfLading:function(billOfLadingInformation,saveShipper,saveConsignee,saveThirdParty,createSavedCopy,succeededCallback, failedCallback, userContext) {
/// <param name="billOfLadingInformation" type="ShippingService.BillOfLadingInformation">ShippingService.BillOfLadingInformation</param>
/// <param name="saveShipper" type="Boolean">System.Boolean</param>
/// <param name="saveConsignee" type="Boolean">System.Boolean</param>
/// <param name="saveThirdParty" type="Boolean">System.Boolean</param>
/// <param name="createSavedCopy" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'CreateBillOfLading',false,{billOfLadingInformation:billOfLadingInformation,saveShipper:saveShipper,saveConsignee:saveConsignee,saveThirdParty:saveThirdParty,createSavedCopy:createSavedCopy},succeededCallback,failedCallback,userContext); },
UpdateBillOfLading:function(billOfLadingInformation,saveShipper,saveConsignee,saveThirdParty,succeededCallback, failedCallback, userContext) {
/// <param name="billOfLadingInformation" type="ShippingService.BillOfLadingInformation">ShippingService.BillOfLadingInformation</param>
/// <param name="saveShipper" type="Boolean">System.Boolean</param>
/// <param name="saveConsignee" type="Boolean">System.Boolean</param>
/// <param name="saveThirdParty" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'UpdateBillOfLading',false,{billOfLadingInformation:billOfLadingInformation,saveShipper:saveShipper,saveConsignee:saveConsignee,saveThirdParty:saveThirdParty},succeededCallback,failedCallback,userContext); },
GetGuaranteedServiceInformation:function(originZipcode,destinationZipcode,pickupDate,succeededCallback, failedCallback, userContext) {
/// <param name="originZipcode" type="String">System.String</param>
/// <param name="destinationZipcode" type="String">System.String</param>
/// <param name="pickupDate" type="Date">System.DateTime</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetGuaranteedServiceInformation',false,{originZipcode:originZipcode,destinationZipcode:destinationZipcode,pickupDate:pickupDate},succeededCallback,failedCallback,userContext); },
SendAdditionalPickupEmails:function(pickupNumber,sendReceiptTo,sendConfirmationTo,succeededCallback, failedCallback, userContext) {
/// <param name="pickupNumber" type="String">System.String</param>
/// <param name="sendReceiptTo" type="Array">System.String[]</param>
/// <param name="sendConfirmationTo" type="Array">System.String[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'SendAdditionalPickupEmails',false,{pickupNumber:pickupNumber,sendReceiptTo:sendReceiptTo,sendConfirmationTo:sendConfirmationTo},succeededCallback,failedCallback,userContext); },
GetPickupHistory:function(startDate,endDate,succeededCallback, failedCallback, userContext) {
/// <param name="startDate" type="Date">System.DateTime</param>
/// <param name="endDate" type="Date">System.DateTime</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetPickupHistory',false,{startDate:startDate,endDate:endDate},succeededCallback,failedCallback,userContext); },
GetBillOfLadingHistory:function(startDate,endDate,succeededCallback, failedCallback, userContext) {
/// <param name="startDate" type="Date">System.DateTime</param>
/// <param name="endDate" type="Date">System.DateTime</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetBillOfLadingHistory',false,{startDate:startDate,endDate:endDate},succeededCallback,failedCallback,userContext); },
GetRateEstimateHistory:function(startDate,endDate,succeededCallback, failedCallback, userContext) {
/// <param name="startDate" type="Date">System.DateTime</param>
/// <param name="endDate" type="Date">System.DateTime</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetRateEstimateHistory',false,{startDate:startDate,endDate:endDate},succeededCallback,failedCallback,userContext); },
GetSavedBillOfLadingInformation:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetSavedBillOfLadingInformation',false,{},succeededCallback,failedCallback,userContext); },
PrintDflBillOfLading:function(billOfLadingInformation,succeededCallback, failedCallback, userContext) {
/// <param name="billOfLadingInformation" type="ShippingService.BillOfLadingInformation">ShippingService.BillOfLadingInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'PrintDflBillOfLading',false,{billOfLadingInformation:billOfLadingInformation},succeededCallback,failedCallback,userContext); },
PrintVicsBillOfLading:function(billOfLadingInformation,succeededCallback, failedCallback, userContext) {
/// <param name="billOfLadingInformation" type="ShippingService.BillOfLadingInformation">ShippingService.BillOfLadingInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'PrintVicsBillOfLading',false,{billOfLadingInformation:billOfLadingInformation},succeededCallback,failedCallback,userContext); },
CreateShippingLabels:function(shippingLabelInformation,succeededCallback, failedCallback, userContext) {
/// <param name="shippingLabelInformation" type="DaytonFreight.Web.ShippingLabelInformation">DaytonFreight.Web.ShippingLabelInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'CreateShippingLabels',false,{shippingLabelInformation:shippingLabelInformation},succeededCallback,failedCallback,userContext); },
DeleteSavedBillOfLading:function(billOfLadingId,succeededCallback, failedCallback, userContext) {
/// <param name="billOfLadingId" type="Number">System.Int64</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'DeleteSavedBillOfLading',false,{billOfLadingId:billOfLadingId},succeededCallback,failedCallback,userContext); },
GetAccessorials:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetAccessorials',false,{},succeededCallback,failedCallback,userContext); },
GetRate:function(customerNumber,terms,originZipcode,destinationZipcode,guaranteedServiceOption,rateShipmentDetails,accessorialCodes,numberOfSkids,succeededCallback, failedCallback, userContext) {
/// <param name="customerNumber" type="String">System.String</param>
/// <param name="terms" type="ShippingService.Terms">ShippingService.Terms</param>
/// <param name="originZipcode" type="String">System.String</param>
/// <param name="destinationZipcode" type="String">System.String</param>
/// <param name="guaranteedServiceOption" type="String">System.String</param>
/// <param name="rateShipmentDetails" type="Array">ShippingService.RateShipmentInformation[]</param>
/// <param name="accessorialCodes" type="Array">System.String[]</param>
/// <param name="numberOfSkids" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetRate',false,{customerNumber:customerNumber,terms:terms,originZipcode:originZipcode,destinationZipcode:destinationZipcode,guaranteedServiceOption:guaranteedServiceOption,rateShipmentDetails:rateShipmentDetails,accessorialCodes:accessorialCodes,numberOfSkids:numberOfSkids},succeededCallback,failedCallback,userContext); },
GetSavedRateQuote:function(encryptedRateNumber,succeededCallback, failedCallback, userContext) {
/// <param name="encryptedRateNumber" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetSavedRateQuote',false,{encryptedRateNumber:encryptedRateNumber},succeededCallback,failedCallback,userContext); },
SendVolumeQuoteEmail:function(emailInformation,succeededCallback, failedCallback, userContext) {
/// <param name="emailInformation" type="DaytonFreight.Web.VolumeQuoteEmailInformation">DaytonFreight.Web.VolumeQuoteEmailInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'SendVolumeQuoteEmail',false,{emailInformation:emailInformation},succeededCallback,failedCallback,userContext); },
GetCurrentFuelSurcharge:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetCurrentFuelSurcharge',false,{},succeededCallback,failedCallback,userContext); },
GetTransitTime:function(originZipcode,destinationZipcode,succeededCallback, failedCallback, userContext) {
/// <param name="originZipcode" type="String">System.String</param>
/// <param name="destinationZipcode" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetTransitTime',false,{originZipcode:originZipcode,destinationZipcode:destinationZipcode},succeededCallback,failedCallback,userContext); },
GetAllSavedBillOfLadingItems:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetAllSavedBillOfLadingItems',false,{},succeededCallback,failedCallback,userContext); },
GetSavedBillOfLadingItems:function(ids,succeededCallback, failedCallback, userContext) {
/// <param name="ids" type="Array">System.String[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetSavedBillOfLadingItems',false,{ids:ids},succeededCallback,failedCallback,userContext); },
EditSavedBillOfLadingItem:function(savedShipmentInformation,succeededCallback, failedCallback, userContext) {
/// <param name="savedShipmentInformation" type="DaytonFreight.Web.SavedShipmentInformation">DaytonFreight.Web.SavedShipmentInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'EditSavedBillOfLadingItem',false,{savedShipmentInformation:savedShipmentInformation},succeededCallback,failedCallback,userContext); },
CreateSavedBillOfLadingItem:function(savedShipmentInformation,succeededCallback, failedCallback, userContext) {
/// <param name="savedShipmentInformation" type="DaytonFreight.Web.SavedShipmentInformation">DaytonFreight.Web.SavedShipmentInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'CreateSavedBillOfLadingItem',false,{savedShipmentInformation:savedShipmentInformation},succeededCallback,failedCallback,userContext); },
DeleteSavedBillOfLadingItem:function(savedShipmentId,succeededCallback, failedCallback, userContext) {
/// <param name="savedShipmentId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'DeleteSavedBillOfLadingItem',false,{savedShipmentId:savedShipmentId},succeededCallback,failedCallback,userContext); },
SearchZipcodes:function(city,state,succeededCallback, failedCallback, userContext) {
/// <param name="city" type="String">System.String</param>
/// <param name="state" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'SearchZipcodes',false,{city:city,state:state},succeededCallback,failedCallback,userContext); }}
DaytonFreight.Web.Services.ShippingServiceInterface.registerClass('DaytonFreight.Web.Services.ShippingServiceInterface',Sys.Net.WebServiceProxy);
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance = new DaytonFreight.Web.Services.ShippingServiceInterface();
DaytonFreight.Web.Services.ShippingServiceInterface.set_path = function(value) {
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.set_path(value); }
DaytonFreight.Web.Services.ShippingServiceInterface.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.get_path();}
DaytonFreight.Web.Services.ShippingServiceInterface.set_timeout = function(value) {
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.set_timeout(value); }
DaytonFreight.Web.Services.ShippingServiceInterface.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.get_timeout(); }
DaytonFreight.Web.Services.ShippingServiceInterface.set_defaultUserContext = function(value) { 
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.set_defaultUserContext(value); }
DaytonFreight.Web.Services.ShippingServiceInterface.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.get_defaultUserContext(); }
DaytonFreight.Web.Services.ShippingServiceInterface.set_defaultSucceededCallback = function(value) { 
 DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.set_defaultSucceededCallback(value); }
DaytonFreight.Web.Services.ShippingServiceInterface.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.get_defaultSucceededCallback(); }
DaytonFreight.Web.Services.ShippingServiceInterface.set_defaultFailedCallback = function(value) { 
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.set_defaultFailedCallback(value); }
DaytonFreight.Web.Services.ShippingServiceInterface.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.get_defaultFailedCallback(); }
DaytonFreight.Web.Services.ShippingServiceInterface.set_enableJsonp = function(value) { DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.set_enableJsonp(value); }
DaytonFreight.Web.Services.ShippingServiceInterface.get_enableJsonp = function() { 
/// <value type="Boolean">Specifies whether the service supports JSONP for cross domain calling.</value>
return DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.get_enableJsonp(); }
DaytonFreight.Web.Services.ShippingServiceInterface.set_jsonpCallbackParameter = function(value) { DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.set_jsonpCallbackParameter(value); }
DaytonFreight.Web.Services.ShippingServiceInterface.get_jsonpCallbackParameter = function() { 
/// <value type="String">Specifies the parameter name that contains the callback function name for a JSONP request.</value>
return DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.get_jsonpCallbackParameter(); }
DaytonFreight.Web.Services.ShippingServiceInterface.set_path("/ScriptServices/ShippingServiceInterface.asmx");
DaytonFreight.Web.Services.ShippingServiceInterface.GetPackaging= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetPackaging(onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetShipmentClasses= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetShipmentClasses(onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetServiceCenterInformation= function(serviceCenterAbbreviation,onSuccess,onFailed,userContext) {
/// <param name="serviceCenterAbbreviation" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetServiceCenterInformation(serviceCenterAbbreviation,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetBillOfLadingInformation= function(billOfLadingId,onSuccess,onFailed,userContext) {
/// <param name="billOfLadingId" type="Number">System.Int64</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetBillOfLadingInformation(billOfLadingId,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.CreatePickup= function(pickupInformation,onSuccess,onFailed,userContext) {
/// <param name="pickupInformation" type="ShippingService.PickupInformation">ShippingService.PickupInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.CreatePickup(pickupInformation,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.UpdatePickup= function(pickupNumber,pickupInformation,onSuccess,onFailed,userContext) {
/// <param name="pickupNumber" type="String">System.String</param>
/// <param name="pickupInformation" type="ShippingService.PickupInformation">ShippingService.PickupInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.UpdatePickup(pickupNumber,pickupInformation,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.CancelPickup= function(pickupNumber,onSuccess,onFailed,userContext) {
/// <param name="pickupNumber" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.CancelPickup(pickupNumber,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.CreateBillOfLading= function(billOfLadingInformation,saveShipper,saveConsignee,saveThirdParty,createSavedCopy,onSuccess,onFailed,userContext) {
/// <param name="billOfLadingInformation" type="ShippingService.BillOfLadingInformation">ShippingService.BillOfLadingInformation</param>
/// <param name="saveShipper" type="Boolean">System.Boolean</param>
/// <param name="saveConsignee" type="Boolean">System.Boolean</param>
/// <param name="saveThirdParty" type="Boolean">System.Boolean</param>
/// <param name="createSavedCopy" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.CreateBillOfLading(billOfLadingInformation,saveShipper,saveConsignee,saveThirdParty,createSavedCopy,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.UpdateBillOfLading= function(billOfLadingInformation,saveShipper,saveConsignee,saveThirdParty,onSuccess,onFailed,userContext) {
/// <param name="billOfLadingInformation" type="ShippingService.BillOfLadingInformation">ShippingService.BillOfLadingInformation</param>
/// <param name="saveShipper" type="Boolean">System.Boolean</param>
/// <param name="saveConsignee" type="Boolean">System.Boolean</param>
/// <param name="saveThirdParty" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.UpdateBillOfLading(billOfLadingInformation,saveShipper,saveConsignee,saveThirdParty,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetGuaranteedServiceInformation= function(originZipcode,destinationZipcode,pickupDate,onSuccess,onFailed,userContext) {
/// <param name="originZipcode" type="String">System.String</param>
/// <param name="destinationZipcode" type="String">System.String</param>
/// <param name="pickupDate" type="Date">System.DateTime</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetGuaranteedServiceInformation(originZipcode,destinationZipcode,pickupDate,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.SendAdditionalPickupEmails= function(pickupNumber,sendReceiptTo,sendConfirmationTo,onSuccess,onFailed,userContext) {
/// <param name="pickupNumber" type="String">System.String</param>
/// <param name="sendReceiptTo" type="Array">System.String[]</param>
/// <param name="sendConfirmationTo" type="Array">System.String[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.SendAdditionalPickupEmails(pickupNumber,sendReceiptTo,sendConfirmationTo,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetPickupHistory= function(startDate,endDate,onSuccess,onFailed,userContext) {
/// <param name="startDate" type="Date">System.DateTime</param>
/// <param name="endDate" type="Date">System.DateTime</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetPickupHistory(startDate,endDate,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetBillOfLadingHistory= function(startDate,endDate,onSuccess,onFailed,userContext) {
/// <param name="startDate" type="Date">System.DateTime</param>
/// <param name="endDate" type="Date">System.DateTime</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetBillOfLadingHistory(startDate,endDate,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetRateEstimateHistory= function(startDate,endDate,onSuccess,onFailed,userContext) {
/// <param name="startDate" type="Date">System.DateTime</param>
/// <param name="endDate" type="Date">System.DateTime</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetRateEstimateHistory(startDate,endDate,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetSavedBillOfLadingInformation= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetSavedBillOfLadingInformation(onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.PrintDflBillOfLading= function(billOfLadingInformation,onSuccess,onFailed,userContext) {
/// <param name="billOfLadingInformation" type="ShippingService.BillOfLadingInformation">ShippingService.BillOfLadingInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.PrintDflBillOfLading(billOfLadingInformation,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.PrintVicsBillOfLading= function(billOfLadingInformation,onSuccess,onFailed,userContext) {
/// <param name="billOfLadingInformation" type="ShippingService.BillOfLadingInformation">ShippingService.BillOfLadingInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.PrintVicsBillOfLading(billOfLadingInformation,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.CreateShippingLabels= function(shippingLabelInformation,onSuccess,onFailed,userContext) {
/// <param name="shippingLabelInformation" type="DaytonFreight.Web.ShippingLabelInformation">DaytonFreight.Web.ShippingLabelInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.CreateShippingLabels(shippingLabelInformation,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.DeleteSavedBillOfLading= function(billOfLadingId,onSuccess,onFailed,userContext) {
/// <param name="billOfLadingId" type="Number">System.Int64</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.DeleteSavedBillOfLading(billOfLadingId,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetAccessorials= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetAccessorials(onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetRate= function(customerNumber,terms,originZipcode,destinationZipcode,guaranteedServiceOption,rateShipmentDetails,accessorialCodes,numberOfSkids,onSuccess,onFailed,userContext) {
/// <param name="customerNumber" type="String">System.String</param>
/// <param name="terms" type="ShippingService.Terms">ShippingService.Terms</param>
/// <param name="originZipcode" type="String">System.String</param>
/// <param name="destinationZipcode" type="String">System.String</param>
/// <param name="guaranteedServiceOption" type="String">System.String</param>
/// <param name="rateShipmentDetails" type="Array">ShippingService.RateShipmentInformation[]</param>
/// <param name="accessorialCodes" type="Array">System.String[]</param>
/// <param name="numberOfSkids" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetRate(customerNumber,terms,originZipcode,destinationZipcode,guaranteedServiceOption,rateShipmentDetails,accessorialCodes,numberOfSkids,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetSavedRateQuote= function(encryptedRateNumber,onSuccess,onFailed,userContext) {
/// <param name="encryptedRateNumber" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetSavedRateQuote(encryptedRateNumber,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.SendVolumeQuoteEmail= function(emailInformation,onSuccess,onFailed,userContext) {
/// <param name="emailInformation" type="DaytonFreight.Web.VolumeQuoteEmailInformation">DaytonFreight.Web.VolumeQuoteEmailInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.SendVolumeQuoteEmail(emailInformation,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetCurrentFuelSurcharge= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetCurrentFuelSurcharge(onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetTransitTime= function(originZipcode,destinationZipcode,onSuccess,onFailed,userContext) {
/// <param name="originZipcode" type="String">System.String</param>
/// <param name="destinationZipcode" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetTransitTime(originZipcode,destinationZipcode,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetAllSavedBillOfLadingItems= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetAllSavedBillOfLadingItems(onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.GetSavedBillOfLadingItems= function(ids,onSuccess,onFailed,userContext) {
/// <param name="ids" type="Array">System.String[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.GetSavedBillOfLadingItems(ids,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.EditSavedBillOfLadingItem= function(savedShipmentInformation,onSuccess,onFailed,userContext) {
/// <param name="savedShipmentInformation" type="DaytonFreight.Web.SavedShipmentInformation">DaytonFreight.Web.SavedShipmentInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.EditSavedBillOfLadingItem(savedShipmentInformation,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.CreateSavedBillOfLadingItem= function(savedShipmentInformation,onSuccess,onFailed,userContext) {
/// <param name="savedShipmentInformation" type="DaytonFreight.Web.SavedShipmentInformation">DaytonFreight.Web.SavedShipmentInformation</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.CreateSavedBillOfLadingItem(savedShipmentInformation,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.DeleteSavedBillOfLadingItem= function(savedShipmentId,onSuccess,onFailed,userContext) {
/// <param name="savedShipmentId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.DeleteSavedBillOfLadingItem(savedShipmentId,onSuccess,onFailed,userContext); }
DaytonFreight.Web.Services.ShippingServiceInterface.SearchZipcodes= function(city,state,onSuccess,onFailed,userContext) {
/// <param name="city" type="String">System.String</param>
/// <param name="state" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
DaytonFreight.Web.Services.ShippingServiceInterface._staticInstance.SearchZipcodes(city,state,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('DaytonFreight.Web');
if (typeof(DaytonFreight.Web.VolumeQuoteEmailShipmentInformation) === 'undefined') {
DaytonFreight.Web.VolumeQuoteEmailShipmentInformation=gtc("DaytonFreight.Web.VolumeQuoteEmailShipmentInformation");
DaytonFreight.Web.VolumeQuoteEmailShipmentInformation.registerClass('DaytonFreight.Web.VolumeQuoteEmailShipmentInformation');
}
Type.registerNamespace('ShippingService');
if (typeof(ShippingService.NameValuePair) === 'undefined') {
ShippingService.NameValuePair=gtc("ShippingService.NameValuePair");
ShippingService.NameValuePair.registerClass('ShippingService.NameValuePair');
}
if (typeof(ShippingService.ServiceCenter) === 'undefined') {
ShippingService.ServiceCenter=gtc("ShippingService.ServiceCenter");
ShippingService.ServiceCenter.registerClass('ShippingService.ServiceCenter');
}
if (typeof(ShippingService.BillOfLadingInformation) === 'undefined') {
ShippingService.BillOfLadingInformation=gtc("ShippingService.BillOfLadingInformation");
ShippingService.BillOfLadingInformation.registerClass('ShippingService.BillOfLadingInformation');
}
if (typeof(ShippingService.PickupInformation) === 'undefined') {
ShippingService.PickupInformation=gtc("ShippingService.PickupInformation");
ShippingService.PickupInformation.registerClass('ShippingService.PickupInformation');
}
if (typeof(ShippingService.GuaranteedServiceInformation) === 'undefined') {
ShippingService.GuaranteedServiceInformation=gtc("ShippingService.GuaranteedServiceInformation");
ShippingService.GuaranteedServiceInformation.registerClass('ShippingService.GuaranteedServiceInformation');
}
if (typeof(ShippingService.RateResult) === 'undefined') {
ShippingService.RateResult=gtc("ShippingService.RateResult");
ShippingService.RateResult.registerClass('ShippingService.RateResult');
}
Type.registerNamespace('ceTe.DynamicPDF.Merger');
if (typeof(ceTe.DynamicPDF.Merger.MergeDocument) === 'undefined') {
ceTe.DynamicPDF.Merger.MergeDocument=gtc("ceTe.DynamicPDF.Merger.MergeDocument");
ceTe.DynamicPDF.Merger.MergeDocument.registerClass('ceTe.DynamicPDF.Merger.MergeDocument');
}
if (typeof(DaytonFreight.Web.ShippingLabelInformation) === 'undefined') {
DaytonFreight.Web.ShippingLabelInformation=gtc("DaytonFreight.Web.ShippingLabelInformation");
DaytonFreight.Web.ShippingLabelInformation.registerClass('DaytonFreight.Web.ShippingLabelInformation');
}
if (typeof(ShippingService.AccessorialDetailInformation) === 'undefined') {
ShippingService.AccessorialDetailInformation=gtc("ShippingService.AccessorialDetailInformation");
ShippingService.AccessorialDetailInformation.registerClass('ShippingService.AccessorialDetailInformation');
}
if (typeof(ShippingService.RateShipmentInformation) === 'undefined') {
ShippingService.RateShipmentInformation=gtc("ShippingService.RateShipmentInformation");
ShippingService.RateShipmentInformation.registerClass('ShippingService.RateShipmentInformation');
}
if (typeof(DaytonFreight.Web.VolumeQuoteEmailInformation) === 'undefined') {
DaytonFreight.Web.VolumeQuoteEmailInformation=gtc("DaytonFreight.Web.VolumeQuoteEmailInformation");
DaytonFreight.Web.VolumeQuoteEmailInformation.registerClass('DaytonFreight.Web.VolumeQuoteEmailInformation');
}
if (typeof(DaytonFreight.Web.FuelSurchargeInformation) === 'undefined') {
DaytonFreight.Web.FuelSurchargeInformation=gtc("DaytonFreight.Web.FuelSurchargeInformation");
DaytonFreight.Web.FuelSurchargeInformation.registerClass('DaytonFreight.Web.FuelSurchargeInformation');
}
if (typeof(ShippingService.TransitTimeResult) === 'undefined') {
ShippingService.TransitTimeResult=gtc("ShippingService.TransitTimeResult");
ShippingService.TransitTimeResult.registerClass('ShippingService.TransitTimeResult');
}
if (typeof(DaytonFreight.Web.SavedShipmentInformation) === 'undefined') {
DaytonFreight.Web.SavedShipmentInformation=gtc("DaytonFreight.Web.SavedShipmentInformation");
DaytonFreight.Web.SavedShipmentInformation.registerClass('DaytonFreight.Web.SavedShipmentInformation');
}
if (typeof(ShippingService.Terms) === 'undefined') {
ShippingService.Terms = function() { throw Error.invalidOperation(); }
ShippingService.Terms.prototype = {Prepaid: 0,Collect: 1,ThirdParty: 2,ThirdPartyPrepaid: 3,ThirdPartyCollect: 4}
ShippingService.Terms.registerEnum('ShippingService.Terms', true);
}

