Expandable details of the request type.

interface RequestTypeDto {
    _expands?: string[];
    _links?: SelfLinkDto;
    canCreateRequest?: boolean;
    description?: string;
    fields?: CustomerRequestCreateMetaDto;
    groupIds?: string[];
    helpText?: string;
    icon?: RequestTypeIconDto;
    id?: string;
    issueTypeId?: string;
    name?: string;
    portalId?: string;
    practice?: string;
    restrictionStatus?: "OPEN" | "RESTRICTED";
    serviceDeskId?: string;
}

Properties

_expands?: string[]

List of items that can be expanded in the response by specifying the expand query parameter.

_links?: SelfLinkDto

REST API URL for the request type.

canCreateRequest?: boolean

Whether the user has permission to create a request with this request type.

description?: string

Description of the request type.

Fields and additional metadata for creating a request that uses the request type

groupIds?: string[]

List of the request type groups the request type belongs to.

helpText?: string

Help text for the request type.

Links to the request type's icons.

id?: string

ID for the request type.

issueTypeId?: string

ID of the issue type the request type is based upon.

name?: string

Short name for the request type.

portalId?: string

ID of the customer portal associated with the service desk project.

practice?: string

The request type's practice

restrictionStatus?: "OPEN" | "RESTRICTED"

Whether request type is restricted or not.

serviceDeskId?: string

ID of the service desk the request type belongs to.