com.byteplus.model.live.v20200801.ListServicesResResultListItem Maven / Gradle / Ivy
package com.byteplus.model.live.v20200801;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* ListServicesResResultListItem
*/
@lombok.Data
public final class ListServicesResResultListItem {
/**
* 用户账号
*/
@com.alibaba.fastjson.annotation.JSONField(name = "AccountID")
private String accountID;
/**
* 审批状态
*
* - 0: 正常
*
* - 1: 未发起
*
* - 2: 未审批
*
* - 3: 审批未通过
*
* - 4:试用
*
* - 5:过期
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private String status;
/**
* 服务状态
*
* 服务状态(仅在状态为审批通过后生效)
*
* - 0: 正式
*
* - 1: 试用
*
* - 2: 过期状态
*
* - -1 表示空
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ServiceStatus")
private String serviceStatus;
/**
* 计费方式
*/
@com.alibaba.fastjson.annotation.JSONField(name = "BillingType")
private String billingType;
/**
* 订单状态
*/
@com.alibaba.fastjson.annotation.JSONField(name = "BillingStatus")
private String billingStatus;
/**
* 订单审批状态
*/
@com.alibaba.fastjson.annotation.JSONField(name = "BillingBillingStatus")
private String billingBillingStatus;
/**
* 公司名称
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CompanyName")
private String companyName;
/**
* 联系人姓名
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ContactPerson")
private String contactPerson;
/**
* 联系人号码
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ContactNumber")
private String contactNumber;
/**
* 业务领域
*/
@com.alibaba.fastjson.annotation.JSONField(name = "BusinessArea")
private String businessArea;
/**
* 业务场景
*/
@com.alibaba.fastjson.annotation.JSONField(name = "BusinessScene")
private String businessScene;
/**
* 申请功能
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ApplyService")
private String applyService;
/**
* 审批人ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ApproverID")
private String approverID;
/**
* 审批人姓名
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ApproverName")
private String approverName;
/**
* 最新提交时间
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CreateTime")
private String createTime;
/**
* 处理时间
*/
@com.alibaba.fastjson.annotation.JSONField(name = "UpdateTime")
private String updateTime;
/**
* 过期时间
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TrailTime")
private String trailTime;
/**
* 隐藏的面板ID, 1: 录制,2:截图,3: 时移,
*
* 4:云导播,5:域名调度域,6:RTM单独计费
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PresetConfigHide")
private List presetConfigHide;
/**
* 低延时直播计费方式
*/
@com.alibaba.fastjson.annotation.JSONField(name = "BillingTypeRTM")
private String billingTypeRTM;
/**
* TODO
*/
@com.alibaba.fastjson.annotation.JSONField(name = "LimitConfig")
private ListServicesResResultListItemLimitConfig limitConfig;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}