Class AsyncRawTicketTypesClient
java.lang.Object
com.intercom.api.resources.tickettypes.AsyncRawTicketTypesClient
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreate(CreateTicketTypeRequest request) You can create a new ticket type.create(CreateTicketTypeRequest request, RequestOptions requestOptions) You can create a new ticket type.get(FindTicketTypeRequest request) You can fetch the details of a single ticket type.get(FindTicketTypeRequest request, RequestOptions requestOptions) You can fetch the details of a single ticket type.list()You can get a list of all ticket types for a workspace.list(RequestOptions requestOptions) You can get a list of all ticket types for a workspace.update(UpdateTicketTypeRequest request) You can update a ticket type.update(UpdateTicketTypeRequest request, RequestOptions requestOptions) You can update a ticket type.
-
Field Details
-
clientOptions
-
-
Constructor Details
-
AsyncRawTicketTypesClient
-
-
Method Details
-
list
You can get a list of all ticket types for a workspace. -
list
You can get a list of all ticket types for a workspace. -
create
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 CompletableFuture<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
You can fetch the details of a single ticket type. -
get
public CompletableFuture<IntercomHttpResponse<TicketType>> get(FindTicketTypeRequest request, RequestOptions requestOptions) You can fetch the details of a single ticket type. -
update
You can update a ticket type.📘 Updating a ticket type.
For the
iconpropery, use an emoji from Twemoji Cheatsheet -
update
public CompletableFuture<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
-