These methods are exposted from Fedex web services. I don't see the Saturday delivery is defined in their Fedex web service. You can ask Fedex to see if they have the Saturday delivery exposed in the web service. If so, ask where it's defined. We can update the code to include that if we have the information.
public enum ServiceType { /// <remarks/> EUROPE_FIRST_INTERNATIONAL_PRIORITY, /// <remarks/> FEDEX_1_DAY_FREIGHT, /// <remarks/> FEDEX_2_DAY, /// <remarks/> FEDEX_2_DAY_FREIGHT, /// <remarks/> FEDEX_3_DAY_FREIGHT, /// <remarks/> FEDEX_EXPRESS_SAVER, /// <remarks/> FEDEX_GROUND, /// <remarks/> FIRST_OVERNIGHT, /// <remarks/> GROUND_HOME_DELIVERY, /// <remarks/> INTERNATIONAL_ECONOMY, /// <remarks/> INTERNATIONAL_ECONOMY_FREIGHT, /// <remarks/> INTERNATIONAL_FIRST, /// <remarks/> INTERNATIONAL_PRIORITY, /// <remarks/> INTERNATIONAL_PRIORITY_FREIGHT, /// <remarks/> PRIORITY_OVERNIGHT, /// <remarks/> STANDARD_OVERNIGHT, }
DotShoppingCart Staff
|