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

com.aliyun.ccc20200701.models.GetTicketSummaryReportRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccc20200701.models;

import com.aliyun.tea.*;

public class GetTicketSummaryReportRequest extends TeaModel {
    /**
     * example:
     * 

assignee@ccc-test

*/ @NameInMap("Assignee") public String assignee; /** * example: *

Agent

*/ @NameInMap("AssigneeType") public String assigneeType; /** * example: *

43c2671b---86d0-6bd187905cc8

*/ @NameInMap("CategoryId") public String categoryId; /** * example: *

creator@ccc-test

*/ @NameInMap("Creator") public String creator; /** * example: *

1719590399999

*/ @NameInMap("EndTime") public Long endTime; /** *

This parameter is required.

* * example: *

ccc-test

*/ @NameInMap("InstanceId") public String instanceId; /** * example: *

1

*/ @NameInMap("PageNumber") public Integer pageNumber; /** * example: *

100

*/ @NameInMap("PageSize") public Integer pageSize; /** * example: *

participant@ccc-test

*/ @NameInMap("Participant") public String participant; /** * example: *

1716998400000

*/ @NameInMap("StartTime") public Long startTime; @NameInMap("State") public String state; public static GetTicketSummaryReportRequest build(java.util.Map map) throws Exception { GetTicketSummaryReportRequest self = new GetTicketSummaryReportRequest(); return TeaModel.build(map, self); } public GetTicketSummaryReportRequest setAssignee(String assignee) { this.assignee = assignee; return this; } public String getAssignee() { return this.assignee; } public GetTicketSummaryReportRequest setAssigneeType(String assigneeType) { this.assigneeType = assigneeType; return this; } public String getAssigneeType() { return this.assigneeType; } public GetTicketSummaryReportRequest setCategoryId(String categoryId) { this.categoryId = categoryId; return this; } public String getCategoryId() { return this.categoryId; } public GetTicketSummaryReportRequest setCreator(String creator) { this.creator = creator; return this; } public String getCreator() { return this.creator; } public GetTicketSummaryReportRequest setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public GetTicketSummaryReportRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public GetTicketSummaryReportRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public GetTicketSummaryReportRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public GetTicketSummaryReportRequest setParticipant(String participant) { this.participant = participant; return this; } public String getParticipant() { return this.participant; } public GetTicketSummaryReportRequest setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public GetTicketSummaryReportRequest setState(String state) { this.state = state; return this; } public String getState() { return this.state; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy