com.volcengine.service.vms.response.SingleInfo 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.service.vms.response;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.Date;
/**
* @author kaede
*/
@Data
public class SingleInfo {
@JSONField(name = "SingleOpenId")
private String singleOpenId;
@JSONField(name = "Resource")
private String resource;
@JSONField(name = "Phone")
private String phone;
@JSONField(name = "Ext")
private String ext;
@JSONField(name = "CreateTime",format="yyyy-MM-dd HH:mm:ss")
private Date createTime;
@JSONField(name = "State")
private String state;
@JSONField(name = "ReleaseTime",format="yyyy-MM-dd HH:mm:ss")
private Date releaseTime;
@JSONField(name = "Duration")
private Integer duration;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy