com.volcengine.model.response.iam.RoleListResponse 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.iam;
import com.alibaba.fastjson.annotation.JSONField;
import com.volcengine.model.response.ResponseMetadata;
import lombok.Data;
import java.util.List;
@Data
public class RoleListResponse {
@JSONField(name = "ResponseMetadata")
ResponseMetadata responseMetadata;
@JSONField(name = "Result")
Result result;
@Data
public static class Result {
@JSONField(name = "RoleMetadata")
List roleMetadata;
@JSONField(name = "Limit")
Integer limit;
@JSONField(name = "Offset")
Integer offset;
@JSONField(name = "Total")
Integer total;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy