Represents a request about to be made to commercetools

interface CommercetoolsRequest {
    data?: any;
    headers: Record<string, string>;
    method: string;
    params?: Record<string, string | number | boolean>;
    url: string;
}

Properties

data?: any
headers: Record<string, string>
method: string
params?: Record<string, string | number | boolean>
url: string

Generated using TypeDoc