File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
volcengine-java-sdk-tis/src/main/java/com/volcengine/tis/model Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 3535
3636public class GetQuotaInfoResponse extends com .volcengine .model .AbstractResponse {
3737 @ SerializedName ("deviceInfoList" )
38- private DeviceInfoListForGetQuotaInfoOutput deviceInfoList = null ;
38+ private List < DeviceInfoListForGetQuotaInfoOutput > deviceInfoList = null ;
3939
4040 @ SerializedName ("quotaInfoList" )
4141 private List <QuotaInfoListForGetQuotaInfoOutput > quotaInfoList = null ;
4242
43- public GetQuotaInfoResponse deviceInfoList (DeviceInfoListForGetQuotaInfoOutput deviceInfoList ) {
43+ public GetQuotaInfoResponse deviceInfoList (List < DeviceInfoListForGetQuotaInfoOutput > deviceInfoList ) {
4444 this .deviceInfoList = deviceInfoList ;
4545 return this ;
4646 }
4747
48+ public GetQuotaInfoResponse addDeviceInfoListItem (DeviceInfoListForGetQuotaInfoOutput deviceInfoListItem ) {
49+ if (this .deviceInfoList == null ) {
50+ this .deviceInfoList = new ArrayList <DeviceInfoListForGetQuotaInfoOutput >();
51+ }
52+ this .deviceInfoList .add (deviceInfoListItem );
53+ return this ;
54+ }
55+
4856 /**
4957 * Get deviceInfoList
5058 * @return deviceInfoList
5159 **/
5260 @ Valid
5361 @ Schema (description = "" )
54- public DeviceInfoListForGetQuotaInfoOutput getDeviceInfoList () {
62+ public List < DeviceInfoListForGetQuotaInfoOutput > getDeviceInfoList () {
5563 return deviceInfoList ;
5664 }
5765
58- public void setDeviceInfoList (DeviceInfoListForGetQuotaInfoOutput deviceInfoList ) {
66+ public void setDeviceInfoList (List < DeviceInfoListForGetQuotaInfoOutput > deviceInfoList ) {
5967 this .deviceInfoList = deviceInfoList ;
6068 }
6169
You can’t perform that action at this time.
0 commit comments