Class ByProjectKeyShippingMethodsMatchingOrdereditRequestBuilder

Constructors

Properties

Methods

Constructors

Properties

args: {
    baseUri?: string;
    executeRequest: executeRequest;
    pathArgs: {
        projectKey: string;
    };
}

Type declaration

  • Optional baseUri?: string
  • executeRequest: executeRequest
  • pathArgs: {
        projectKey: string;
    }
    • projectKey: string

Methods

  • Checks if a ShippingMethod that can ship to the given Location exists for the given OrderEdit. Returns a 200 OK status if the ShippingMethod exists or a 404 Not Found otherwise.

    Parameters

    • methodArgs: {
          headers?: {
              [key: string]: string | string[];
          };
          queryArgs: {
              country: string;
              orderEditId: string;
              state?: string;
              [key: string]: QueryParam;
          };
      }
      • Optional headers?: {
            [key: string]: string | string[];
        }
        • [key: string]: string | string[]
      • queryArgs: {
            country: string;
            orderEditId: string;
            state?: string;
            [key: string]: QueryParam;
        }
        • [key: string]: QueryParam
        • country: string
        • orderEditId: string
        • Optional state?: string

    Returns ApiRequest<void>