com.volcengine.model.beans.SmsSignatureInfo 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.beans;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
@Data
public class SmsSignatureInfo {
@JSONField(name = "Id")
String id;
@JSONField(name = "ApplyId")
String applyId;
@JSONField(name = "Content")
String content;
@JSONField(name = "Source")
String source;
@JSONField(name = "Application")
String application;
@JSONField(name = "CreatedTime")
long createTime;
@JSONField(name = "IsOrder")
Boolean isOrder;
@JSONField(name = "Status")
int status;
@JSONField(name = "Reason")
String reason;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy