All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lark.oapi.service.helpdesk.v1.model.P2TicketCreatedV1Data Maven / Gradle / Ivy

// Code generated by lark suite oapi sdk gen
/*
 * MIT License
 *
 * Copyright (c) 2022 Lark Technologies Pte. Ltd.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice, shall be included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

package com.lark.oapi.service.helpdesk.v1.model;

import com.lark.oapi.core.response.EmptyData;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.SerializedName;
import com.lark.oapi.core.annotation.Body;
import com.lark.oapi.core.annotation.Path;
import com.lark.oapi.core.annotation.Query;

import java.io.ByteArrayOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;

import com.lark.oapi.core.utils.Strings;
import com.lark.oapi.core.response.BaseResponse;

public class P2TicketCreatedV1Data {
    /**
     * ticket id
     * 

示例值: */ @SerializedName("ticket_id") private String ticketId; /** * helpdesk id *

示例值: */ @SerializedName("helpdesk_id") private String helpdeskId; /** * guest of this ticket *

示例值: */ @SerializedName("guest") private TicketUserEvent guest; /** * ticket stage *

示例值: */ @SerializedName("stage") private Integer stage; /** * ticket status *

示例值: */ @SerializedName("status") private Integer status; /** * ticket score *

示例值: */ @SerializedName("score") private Integer score; /** * the time when the ticket is created *

示例值: */ @SerializedName("created_at") private Integer createdAt; /** * the time when the ticket is updated *

示例值: */ @SerializedName("updated_at") private Integer updatedAt; /** * the time when the ticket is closed *

示例值: */ @SerializedName("closed_at") private Integer closedAt; /** * the ticket channel *

示例值: */ @SerializedName("channel") private Integer channel; /** * if ticket is solved *

示例值: */ @SerializedName("solve") private Integer solve; /** * ticket customized fields *

示例值: */ @SerializedName("customized_fields") private CustomizedFieldDisplayItem[] customizedFields; /** *

示例值: */ @SerializedName("chat_id") private String chatId; public String getTicketId() { return this.ticketId; } public void setTicketId(String ticketId) { this.ticketId = ticketId; } public String getHelpdeskId() { return this.helpdeskId; } public void setHelpdeskId(String helpdeskId) { this.helpdeskId = helpdeskId; } public TicketUserEvent getGuest() { return this.guest; } public void setGuest(TicketUserEvent guest) { this.guest = guest; } public Integer getStage() { return this.stage; } public void setStage(Integer stage) { this.stage = stage; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public Integer getScore() { return this.score; } public void setScore(Integer score) { this.score = score; } public Integer getCreatedAt() { return this.createdAt; } public void setCreatedAt(Integer createdAt) { this.createdAt = createdAt; } public Integer getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(Integer updatedAt) { this.updatedAt = updatedAt; } public Integer getClosedAt() { return this.closedAt; } public void setClosedAt(Integer closedAt) { this.closedAt = closedAt; } public Integer getChannel() { return this.channel; } public void setChannel(Integer channel) { this.channel = channel; } public Integer getSolve() { return this.solve; } public void setSolve(Integer solve) { this.solve = solve; } public CustomizedFieldDisplayItem[] getCustomizedFields() { return this.customizedFields; } public void setCustomizedFields(CustomizedFieldDisplayItem[] customizedFields) { this.customizedFields = customizedFields; } public String getChatId() { return this.chatId; } public void setChatId(String chatId) { this.chatId = chatId; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy