com.volcengine.model.request.GetSignatureIdentListRequest 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.request;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
@Data
public class GetSignatureIdentListRequest {
@JSONField(name = "id")
long id;
@JSONField(name = "materialName")
String materialName;
@JSONField(name = "operatorPersonName")
String operatorPersonName;
@JSONField(name = "responsiblePersonName")
String responsiblePersonName;
@JSONField(name = "businessCertificateName")
String businessCertificateName;
@JSONField(name = "effectSignatures")
String effectSignatures;
@JSONField(name = "status")
List status;
@JSONField(name = "pageIndex")
int pageIndex;
@JSONField(name = "pageSize")
int pageSize;
@JSONField(name = "from")
String from;
@JSONField(name = "ids")
List ids;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy