Class ByProjectKeyProductTypesKeyByKeyRequestBuilder
 Constructors
constructor
Parameters
- args: {
    baseUri?: string;
    executeRequest: executeRequest;
    pathArgs: { key: string; projectKey: string };
} 
 Properties
Protected Readonlyargs
args: {    baseUri?: string;    executeRequest: executeRequest;    pathArgs: { key: string; projectKey: string };}  Methods
delete
delete(    methodArgs: {        headers?: { [key: string]: string | string[] };        queryArgs: {            expand?: string | string[];            version: number;            [key: string]: QueryParam;        };    },): ApiRequest<ProductType> Parameters
- methodArgs: {
    headers?: { [key: string]: string | string[] };
    queryArgs: {
        expand?: string | string[];
        version: number;
        [key: string]: QueryParam;
    };
} 
get
get(    methodArgs?: {        headers?: { [key: string]: string | string[] };        queryArgs?: { expand?: string | string[]; [key: string]: QueryParam };    },): ApiRequest<ProductType> Parameters
OptionalmethodArgs: {
    headers?: { [key: string]: string | string[] };
    queryArgs?: { expand?: string | string[]; [key: string]: QueryParam };
}
head
head(    methodArgs?: { headers?: { [key: string]: string | string[] } },): ApiRequest<void> Parameters
OptionalmethodArgs: { headers?: { [key: string]: string | string[] } }
post
Parameters
- methodArgs: {
    body: ProductTypeUpdate;
    headers?: { [key: string]: string | string[] };
    queryArgs?: { expand?: string | string[]; [key: string]: QueryParam };
} 
Checks if a ProductType exists for a given
key. Returns a200 OKstatus if the ProductType exists or a404 Not Foundotherwise.