com.volcengine.model.response.GetSubAccountDetailResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.response;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
@Data
public class GetSubAccountDetailResponse {
@JSONField(name = "ResponseMetadata")
ResponseMetadata responseMetadata;
@JSONField(name = "Result")
SmsSubAccountDetail result;
@Data
public static class SmsSubAccountDetail {
@JSONField(name = "SubAccountId")
String subAccountId;
@JSONField(name = "SubAccountName")
String subAccountName;
@JSONField(name = "CreatedTime")
int createdTime;
@JSONField(name = "Status")
int status;
@JSONField(name = "Desc")
String desc;
@JSONField(name = "EnabledChannelType")
List enabledChannelType;
}
@Data
public static class EnabledChannelType {
@JSONField(name = "Name")
String name;
@JSONField(name = "Value")
String value;
@JSONField(name = "Area")
String area;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy