Package com.intercom.api.types
Interface CreateTicketTypeRequest._FinalStage
-
- All Known Implementing Classes:
CreateTicketTypeRequest.Builder
- Enclosing class:
- CreateTicketTypeRequest
public static interface CreateTicketTypeRequest._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateTicketTypeRequestbuild()CreateTicketTypeRequest._FinalStagecategory(CreateTicketTypeRequest.Category category)CreateTicketTypeRequest._FinalStagecategory(java.util.Optional<CreateTicketTypeRequest.Category> category)Category of the Ticket Type.CreateTicketTypeRequest._FinalStagedescription(java.lang.String description)CreateTicketTypeRequest._FinalStagedescription(java.util.Optional<java.lang.String> description)The description of the ticket type.CreateTicketTypeRequest._FinalStageicon(java.lang.String icon)CreateTicketTypeRequest._FinalStageicon(java.util.Optional<java.lang.String> icon)The icon of the ticket type.CreateTicketTypeRequest._FinalStageisInternal(java.lang.Boolean isInternal)CreateTicketTypeRequest._FinalStageisInternal(java.util.Optional<java.lang.Boolean> isInternal)Whether the tickets associated with this ticket type are intended for internal use only or will be shared with customers.
-
-
-
Method Detail
-
build
CreateTicketTypeRequest build()
-
description
CreateTicketTypeRequest._FinalStage description(java.util.Optional<java.lang.String> description)
The description of the ticket type.
-
description
CreateTicketTypeRequest._FinalStage description(java.lang.String description)
-
category
CreateTicketTypeRequest._FinalStage category(java.util.Optional<CreateTicketTypeRequest.Category> category)
Category of the Ticket Type.
-
category
CreateTicketTypeRequest._FinalStage category(CreateTicketTypeRequest.Category category)
-
icon
CreateTicketTypeRequest._FinalStage icon(java.util.Optional<java.lang.String> icon)
The icon of the ticket type.
-
icon
CreateTicketTypeRequest._FinalStage icon(java.lang.String icon)
-
isInternal
CreateTicketTypeRequest._FinalStage isInternal(java.util.Optional<java.lang.Boolean> isInternal)
Whether the tickets associated with this ticket type are intended for internal use only or will be shared with customers. This is currently a limited attribute.
-
isInternal
CreateTicketTypeRequest._FinalStage isInternal(java.lang.Boolean isInternal)
-
-