Class RawTicketTypesClient
- java.lang.Object
-
- com.intercom.api.resources.tickettypes.RawTicketTypesClient
-
public class RawTicketTypesClient extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected ClientOptionsclientOptions
-
Constructor Summary
Constructors Constructor Description RawTicketTypesClient(ClientOptions clientOptions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntercomHttpResponse<TicketType>create(CreateTicketTypeRequest request)You can create a new ticket type.IntercomHttpResponse<TicketType>create(CreateTicketTypeRequest request, RequestOptions requestOptions)You can create a new ticket type.IntercomHttpResponse<TicketType>get(FindTicketTypeRequest request)You can fetch the details of a single ticket type.IntercomHttpResponse<TicketType>get(FindTicketTypeRequest request, RequestOptions requestOptions)You can fetch the details of a single ticket type.IntercomHttpResponse<TicketTypeList>list()You can get a list of all ticket types for a workspace.IntercomHttpResponse<TicketTypeList>list(RequestOptions requestOptions)You can get a list of all ticket types for a workspace.IntercomHttpResponse<TicketType>update(UpdateTicketTypeRequest request)You can update a ticket type.IntercomHttpResponse<TicketType>update(UpdateTicketTypeRequest request, RequestOptions requestOptions)You can update a ticket type.
-
-
-
Field Detail
-
clientOptions
protected final ClientOptions clientOptions
-
-
Constructor Detail
-
RawTicketTypesClient
public RawTicketTypesClient(ClientOptions clientOptions)
-
-
Method Detail
-
list
public IntercomHttpResponse<TicketTypeList> list()
You can get a list of all ticket types for a workspace.
-
list
public IntercomHttpResponse<TicketTypeList> list(RequestOptions requestOptions)
You can get a list of all ticket types for a workspace.
-
create
public IntercomHttpResponse<TicketType> create(CreateTicketTypeRequest request)
You can create a new ticket type.📘 Creating ticket types.
Every ticket type will be created with two default attributes: default_title and default_description. For the
iconpropery, use an emoji from Twemoji Cheatsheet
-
create
public IntercomHttpResponse<TicketType> create(CreateTicketTypeRequest request, RequestOptions requestOptions)
You can create a new ticket type.📘 Creating ticket types.
Every ticket type will be created with two default attributes: default_title and default_description. For the
iconpropery, use an emoji from Twemoji Cheatsheet
-
get
public IntercomHttpResponse<TicketType> get(FindTicketTypeRequest request)
You can fetch the details of a single ticket type.
-
get
public IntercomHttpResponse<TicketType> get(FindTicketTypeRequest request, RequestOptions requestOptions)
You can fetch the details of a single ticket type.
-
update
public IntercomHttpResponse<TicketType> update(UpdateTicketTypeRequest request)
You can update a ticket type.📘 Updating a ticket type.
For the
iconpropery, use an emoji from Twemoji Cheatsheet
-
update
public IntercomHttpResponse<TicketType> update(UpdateTicketTypeRequest request, RequestOptions requestOptions)
You can update a ticket type.📘 Updating a ticket type.
For the
iconpropery, use an emoji from Twemoji Cheatsheet
-
-