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

com.aliyun.ice20201109.models.ListSmartVoiceGroupsResponseBody Maven / Gradle / Ivy

There is a newer version: 3.11.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;

import com.aliyun.tea.*;

public class ListSmartVoiceGroupsResponseBody extends TeaModel {
    /**
     * 

Id of the request

*/ @NameInMap("RequestId") public String requestId; @NameInMap("VoiceGroups") public java.util.List voiceGroups; public static ListSmartVoiceGroupsResponseBody build(java.util.Map map) throws Exception { ListSmartVoiceGroupsResponseBody self = new ListSmartVoiceGroupsResponseBody(); return TeaModel.build(map, self); } public ListSmartVoiceGroupsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListSmartVoiceGroupsResponseBody setVoiceGroups(java.util.List voiceGroups) { this.voiceGroups = voiceGroups; return this; } public java.util.List getVoiceGroups() { return this.voiceGroups; } public static class ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList extends TeaModel { @NameInMap("Desc") public String desc; @NameInMap("Name") public String name; @NameInMap("Remark") public String remark; @NameInMap("Tag") public String tag; @NameInMap("Voice") public String voice; @NameInMap("VoiceType") public String voiceType; @NameInMap("VoiceUrl") public String voiceUrl; public static ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList build(java.util.Map map) throws Exception { ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList self = new ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList(); return TeaModel.build(map, self); } public ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList setDesc(String desc) { this.desc = desc; return this; } public String getDesc() { return this.desc; } public ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList setTag(String tag) { this.tag = tag; return this; } public String getTag() { return this.tag; } public ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList setVoice(String voice) { this.voice = voice; return this; } public String getVoice() { return this.voice; } public ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList setVoiceType(String voiceType) { this.voiceType = voiceType; return this; } public String getVoiceType() { return this.voiceType; } public ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList setVoiceUrl(String voiceUrl) { this.voiceUrl = voiceUrl; return this; } public String getVoiceUrl() { return this.voiceUrl; } } public static class ListSmartVoiceGroupsResponseBodyVoiceGroups extends TeaModel { @NameInMap("Type") public String type; @NameInMap("VoiceList") public java.util.List voiceList; public static ListSmartVoiceGroupsResponseBodyVoiceGroups build(java.util.Map map) throws Exception { ListSmartVoiceGroupsResponseBodyVoiceGroups self = new ListSmartVoiceGroupsResponseBodyVoiceGroups(); return TeaModel.build(map, self); } public ListSmartVoiceGroupsResponseBodyVoiceGroups setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public ListSmartVoiceGroupsResponseBodyVoiceGroups setVoiceList(java.util.List voiceList) { this.voiceList = voiceList; return this; } public java.util.List getVoiceList() { return this.voiceList; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy