/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.urls.commerce.settings.shipping; import com.mozu.api.MozuUrl; import com.mozu.api.utils.UrlFormatter; import org.joda.time.DateTime; public class SiteShippingHandlingFeeUrl { /** * Get Resource Url for GetOrderHandlingFee * @param responseFields Use this field to include those fields which are not included by default. * @return String Resource Url */ public static MozuUrl getOrderHandlingFeeUrl(String responseFields) { UrlFormatter formatter = new UrlFormatter("/api/commerce/settings/shipping/orderhandlingfee?responseFields={responseFields}"); formatter.formatUrl("responseFields", responseFields); return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ; } /** * Get Resource Url for CreateOrderHandlingFee * @param responseFields Use this field to include those fields which are not included by default. * @return String Resource Url */ public static MozuUrl createOrderHandlingFeeUrl(String responseFields) { UrlFormatter formatter = new UrlFormatter("/api/commerce/settings/shipping/orderhandlingfee?responseFields={responseFields}"); formatter.formatUrl("responseFields", responseFields); return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ; } /** * Get Resource Url for UpdateOrderHandlingFee * @param responseFields Use this field to include those fields which are not included by default. * @return String Resource Url */ public static MozuUrl updateOrderHandlingFeeUrl(String responseFields) { UrlFormatter formatter = new UrlFormatter("/api/commerce/settings/shipping/orderhandlingfee?responseFields={responseFields}"); formatter.formatUrl("responseFields", responseFields); return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ; } }