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

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

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

import com.aliyun.tea.*;

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

OK

*/ @NameInMap("Code") public String code; @NameInMap("Data") public ListAgentStatesResponseBodyData data; /** * example: *

200

*/ @NameInMap("HttpStatusCode") public Integer httpStatusCode; @NameInMap("Message") public String message; /** * example: *

03C67DAD-EB26-41D8-949D-9B0C470FB716

*/ @NameInMap("RequestId") public String requestId; /** * example: *

true

*/ @NameInMap("Success") public Boolean success; public static ListAgentStatesResponseBody build(java.util.Map map) throws Exception { ListAgentStatesResponseBody self = new ListAgentStatesResponseBody(); return TeaModel.build(map, self); } public ListAgentStatesResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public ListAgentStatesResponseBody setData(ListAgentStatesResponseBodyData data) { this.data = data; return this; } public ListAgentStatesResponseBodyData getData() { return this.data; } public ListAgentStatesResponseBody setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public ListAgentStatesResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public ListAgentStatesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListAgentStatesResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } public static class ListAgentStatesResponseBodyDataList extends TeaModel { /** * example: *

agent@ccc-test

*/ @NameInMap("AgentId") public String agentId; @NameInMap("AgentName") public String agentName; /** * example: *

Warm-up

*/ @NameInMap("BreakCode") public String breakCode; /** * example: *

8030****

*/ @NameInMap("Dn") public String dn; /** * example: *

ccc-test

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

agent

*/ @NameInMap("LoginName") public String loginName; /** * example: *

false

*/ @NameInMap("OutboundScenario") public Boolean outboundScenario; /** * example: *

Ready

*/ @NameInMap("State") public String state; /** * example: *

10

*/ @NameInMap("StateDuration") public String stateDuration; public static ListAgentStatesResponseBodyDataList build(java.util.Map map) throws Exception { ListAgentStatesResponseBodyDataList self = new ListAgentStatesResponseBodyDataList(); return TeaModel.build(map, self); } public ListAgentStatesResponseBodyDataList setAgentId(String agentId) { this.agentId = agentId; return this; } public String getAgentId() { return this.agentId; } public ListAgentStatesResponseBodyDataList setAgentName(String agentName) { this.agentName = agentName; return this; } public String getAgentName() { return this.agentName; } public ListAgentStatesResponseBodyDataList setBreakCode(String breakCode) { this.breakCode = breakCode; return this; } public String getBreakCode() { return this.breakCode; } public ListAgentStatesResponseBodyDataList setDn(String dn) { this.dn = dn; return this; } public String getDn() { return this.dn; } public ListAgentStatesResponseBodyDataList setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public ListAgentStatesResponseBodyDataList setLoginName(String loginName) { this.loginName = loginName; return this; } public String getLoginName() { return this.loginName; } public ListAgentStatesResponseBodyDataList setOutboundScenario(Boolean outboundScenario) { this.outboundScenario = outboundScenario; return this; } public Boolean getOutboundScenario() { return this.outboundScenario; } public ListAgentStatesResponseBodyDataList setState(String state) { this.state = state; return this; } public String getState() { return this.state; } public ListAgentStatesResponseBodyDataList setStateDuration(String stateDuration) { this.stateDuration = stateDuration; return this; } public String getStateDuration() { return this.stateDuration; } } public static class ListAgentStatesResponseBodyData extends TeaModel { @NameInMap("List") public java.util.List list; /** * example: *

1

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

100

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

11

*/ @NameInMap("TotalCount") public Integer totalCount; public static ListAgentStatesResponseBodyData build(java.util.Map map) throws Exception { ListAgentStatesResponseBodyData self = new ListAgentStatesResponseBodyData(); return TeaModel.build(map, self); } public ListAgentStatesResponseBodyData setList(java.util.List list) { this.list = list; return this; } public java.util.List getList() { return this.list; } public ListAgentStatesResponseBodyData setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListAgentStatesResponseBodyData setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListAgentStatesResponseBodyData setTotalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public Integer getTotalCount() { return this.totalCount; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy