index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeResourceCoverageDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeResourceCoverageDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeResourceCoverageDetailResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String nextToken; private Integer totalCount; private Integer maxResults; private List<Item> items; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String commodityCode; private String productName; private Float totalQuantity; private String regionNo; private String userId; private String commodityName; private String capacityUnit; private String instanceId; private String currency; private String zoneName; private String instanceSpec; private String endTime; private String startTime; private Float paymentAmount; private Float coveragePercentage; private String region; private Float deductQuantity; private String zone; private String userName; private String productCode; public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public Float getTotalQuantity() { return this.totalQuantity; } public void setTotalQuantity(Float totalQuantity) { this.totalQuantity = totalQuantity; } public String getRegionNo() { return this.regionNo; } public void setRegionNo(String regionNo) { this.regionNo = regionNo; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getCommodityName() { return this.commodityName; } public void setCommodityName(String commodityName) { this.commodityName = commodityName; } public String getCapacityUnit() { return this.capacityUnit; } public void setCapacityUnit(String capacityUnit) { this.capacityUnit = capacityUnit; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public String getZoneName() { return this.zoneName; } public void setZoneName(String zoneName) { this.zoneName = zoneName; } public String getInstanceSpec() { return this.instanceSpec; } public void setInstanceSpec(String instanceSpec) { this.instanceSpec = instanceSpec; } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public Float getPaymentAmount() { return this.paymentAmount; } public void setPaymentAmount(Float paymentAmount) { this.paymentAmount = paymentAmount; } public Float getCoveragePercentage() { return this.coveragePercentage; } public void setCoveragePercentage(Float coveragePercentage) { this.coveragePercentage = coveragePercentage; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public Float getDeductQuantity() { return this.deductQuantity; } public void setDeductQuantity(Float deductQuantity) { this.deductQuantity = deductQuantity; } public String getZone() { return this.zone; } public void setZone(String zone) { this.zone = zone; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } } } @Override public DescribeResourceCoverageDetailResponse getInstance(UnmarshallerContext context) { return DescribeResourceCoverageDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeResourceCoverageTotalRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeResourceCoverageTotalRequest extends RpcAcsRequest<DescribeResourceCoverageTotalResponse> { private String periodType; private Long billOwnerId; private String resourceType; private String startPeriod; private String endPeriod; public DescribeResourceCoverageTotalRequest() { super("BssOpenApi", "2017-12-14", "DescribeResourceCoverageTotal", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPeriodType() { return this.periodType; } public void setPeriodType(String periodType) { this.periodType = periodType; if(periodType != null){ putQueryParameter("PeriodType", periodType); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public String getStartPeriod() { return this.startPeriod; } public void setStartPeriod(String startPeriod) { this.startPeriod = startPeriod; if(startPeriod != null){ putQueryParameter("StartPeriod", startPeriod); } } public String getEndPeriod() { return this.endPeriod; } public void setEndPeriod(String endPeriod) { this.endPeriod = endPeriod; if(endPeriod != null){ putQueryParameter("EndPeriod", endPeriod); } } @Override public Class<DescribeResourceCoverageTotalResponse> getResponseClass() { return DescribeResourceCoverageTotalResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeResourceCoverageTotalResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeResourceCoverageTotalResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeResourceCoverageTotalResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<Item> periodCoverage; private TotalCoverage totalCoverage; public List<Item> getPeriodCoverage() { return this.periodCoverage; } public void setPeriodCoverage(List<Item> periodCoverage) { this.periodCoverage = periodCoverage; } public TotalCoverage getTotalCoverage() { return this.totalCoverage; } public void setTotalCoverage(TotalCoverage totalCoverage) { this.totalCoverage = totalCoverage; } public static class Item { private Float coveragePercentage; private String period; public Float getCoveragePercentage() { return this.coveragePercentage; } public void setCoveragePercentage(Float coveragePercentage) { this.coveragePercentage = coveragePercentage; } public String getPeriod() { return this.period; } public void setPeriod(String period) { this.period = period; } } public static class TotalCoverage { private String capacityUnit; private Float deductQuantity; private Float coveragePercentage; private Float totalQuantity; public String getCapacityUnit() { return this.capacityUnit; } public void setCapacityUnit(String capacityUnit) { this.capacityUnit = capacityUnit; } public Float getDeductQuantity() { return this.deductQuantity; } public void setDeductQuantity(Float deductQuantity) { this.deductQuantity = deductQuantity; } public Float getCoveragePercentage() { return this.coveragePercentage; } public void setCoveragePercentage(Float coveragePercentage) { this.coveragePercentage = coveragePercentage; } public Float getTotalQuantity() { return this.totalQuantity; } public void setTotalQuantity(Float totalQuantity) { this.totalQuantity = totalQuantity; } } } @Override public DescribeResourceCoverageTotalResponse getInstance(UnmarshallerContext context) { return DescribeResourceCoverageTotalResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeResourcePackageProductRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeResourcePackageProductRequest extends RpcAcsRequest<DescribeResourcePackageProductResponse> { private String productCode; public DescribeResourcePackageProductRequest() { super("BssOpenApi", "2017-12-14", "DescribeResourcePackageProduct", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } @Override public Class<DescribeResourcePackageProductResponse> getResponseClass() { return DescribeResourcePackageProductResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeResourcePackageProductResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeResourcePackageProductResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeResourcePackageProductResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Long orderId; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Long getOrderId() { return this.orderId; } public void setOrderId(Long orderId) { this.orderId = orderId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<ResourcePackage> resourcePackages; public List<ResourcePackage> getResourcePackages() { return this.resourcePackages; } public void setResourcePackages(List<ResourcePackage> resourcePackages) { this.resourcePackages = resourcePackages; } public static class ResourcePackage { private String productType; private String name; private String productCode; private List<PackageType> packageTypes; public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public List<PackageType> getPackageTypes() { return this.packageTypes; } public void setPackageTypes(List<PackageType> packageTypes) { this.packageTypes = packageTypes; } public static class PackageType { private String code; private String name; private List<Property> properties; private List<Specification> specifications; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public List<Property> getProperties() { return this.properties; } public void setProperties(List<Property> properties) { this.properties = properties; } public List<Specification> getSpecifications() { return this.specifications; } public void setSpecifications(List<Specification> specifications) { this.specifications = specifications; } public static class Property { private String name; private String value; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } public static class Specification { private String name; private String value; private List<AvailableDuration> availableDurations; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public List<AvailableDuration> getAvailableDurations() { return this.availableDurations; } public void setAvailableDurations(List<AvailableDuration> availableDurations) { this.availableDurations = availableDurations; } public static class AvailableDuration { private Integer value; private String name; private String unit; public Integer getValue() { return this.value; } public void setValue(Integer value) { this.value = value; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getUnit() { return this.unit; } public void setUnit(String unit) { this.unit = unit; } } } } } } @Override public DescribeResourcePackageProductResponse getInstance(UnmarshallerContext context) { return DescribeResourcePackageProductResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeResourceUsageDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeResourceUsageDetailRequest extends RpcAcsRequest<DescribeResourceUsageDetailResponse> { private String periodType; private Long billOwnerId; private String resourceType; private String startPeriod; private String endPeriod; private String nextToken; private Integer maxResults; public DescribeResourceUsageDetailRequest() { super("BssOpenApi", "2017-12-14", "DescribeResourceUsageDetail", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPeriodType() { return this.periodType; } public void setPeriodType(String periodType) { this.periodType = periodType; if(periodType != null){ putQueryParameter("PeriodType", periodType); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public String getStartPeriod() { return this.startPeriod; } public void setStartPeriod(String startPeriod) { this.startPeriod = startPeriod; if(startPeriod != null){ putQueryParameter("StartPeriod", startPeriod); } } public String getEndPeriod() { return this.endPeriod; } public void setEndPeriod(String endPeriod) { this.endPeriod = endPeriod; if(endPeriod != null){ putQueryParameter("EndPeriod", endPeriod); } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putQueryParameter("NextToken", nextToken); } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putQueryParameter("MaxResults", maxResults.toString()); } } @Override public Class<DescribeResourceUsageDetailResponse> getResponseClass() { return DescribeResourceUsageDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeResourceUsageDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeResourceUsageDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeResourceUsageDetailResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String nextToken; private Integer totalCount; private Integer maxResults; private List<Item> items; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String status; private Float usagePercentage; private String resourceInstanceId; private Float totalQuantity; private String reservationCost; private String regionNo; private String userId; private String statusName; private String capacityUnit; private String potentialSavedCost; private String currency; private String zoneName; private String instanceSpec; private String endTime; private String postpaidCost; private String imageType; private String startTime; private String region; private Float deductQuantity; private String savedCost; private String zone; private String userName; private Long quantity; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Float getUsagePercentage() { return this.usagePercentage; } public void setUsagePercentage(Float usagePercentage) { this.usagePercentage = usagePercentage; } public String getResourceInstanceId() { return this.resourceInstanceId; } public void setResourceInstanceId(String resourceInstanceId) { this.resourceInstanceId = resourceInstanceId; } public Float getTotalQuantity() { return this.totalQuantity; } public void setTotalQuantity(Float totalQuantity) { this.totalQuantity = totalQuantity; } public String getReservationCost() { return this.reservationCost; } public void setReservationCost(String reservationCost) { this.reservationCost = reservationCost; } public String getRegionNo() { return this.regionNo; } public void setRegionNo(String regionNo) { this.regionNo = regionNo; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getStatusName() { return this.statusName; } public void setStatusName(String statusName) { this.statusName = statusName; } public String getCapacityUnit() { return this.capacityUnit; } public void setCapacityUnit(String capacityUnit) { this.capacityUnit = capacityUnit; } public String getPotentialSavedCost() { return this.potentialSavedCost; } public void setPotentialSavedCost(String potentialSavedCost) { this.potentialSavedCost = potentialSavedCost; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public String getZoneName() { return this.zoneName; } public void setZoneName(String zoneName) { this.zoneName = zoneName; } public String getInstanceSpec() { return this.instanceSpec; } public void setInstanceSpec(String instanceSpec) { this.instanceSpec = instanceSpec; } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public String getPostpaidCost() { return this.postpaidCost; } public void setPostpaidCost(String postpaidCost) { this.postpaidCost = postpaidCost; } public String getImageType() { return this.imageType; } public void setImageType(String imageType) { this.imageType = imageType; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public Float getDeductQuantity() { return this.deductQuantity; } public void setDeductQuantity(Float deductQuantity) { this.deductQuantity = deductQuantity; } public String getSavedCost() { return this.savedCost; } public void setSavedCost(String savedCost) { this.savedCost = savedCost; } public String getZone() { return this.zone; } public void setZone(String zone) { this.zone = zone; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public Long getQuantity() { return this.quantity; } public void setQuantity(Long quantity) { this.quantity = quantity; } } } @Override public DescribeResourceUsageDetailResponse getInstance(UnmarshallerContext context) { return DescribeResourceUsageDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeResourceUsageTotalRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeResourceUsageTotalRequest extends RpcAcsRequest<DescribeResourceUsageTotalResponse> { private String periodType; private Long billOwnerId; private String resourceType; private String startPeriod; private String endPeriod; public DescribeResourceUsageTotalRequest() { super("BssOpenApi", "2017-12-14", "DescribeResourceUsageTotal", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPeriodType() { return this.periodType; } public void setPeriodType(String periodType) { this.periodType = periodType; if(periodType != null){ putQueryParameter("PeriodType", periodType); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public String getStartPeriod() { return this.startPeriod; } public void setStartPeriod(String startPeriod) { this.startPeriod = startPeriod; if(startPeriod != null){ putQueryParameter("StartPeriod", startPeriod); } } public String getEndPeriod() { return this.endPeriod; } public void setEndPeriod(String endPeriod) { this.endPeriod = endPeriod; if(endPeriod != null){ putQueryParameter("EndPeriod", endPeriod); } } @Override public Class<DescribeResourceUsageTotalResponse> getResponseClass() { return DescribeResourceUsageTotalResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeResourceUsageTotalResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeResourceUsageTotalResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeResourceUsageTotalResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<Item> periodCoverage; private TotalUsage totalUsage; public List<Item> getPeriodCoverage() { return this.periodCoverage; } public void setPeriodCoverage(List<Item> periodCoverage) { this.periodCoverage = periodCoverage; } public TotalUsage getTotalUsage() { return this.totalUsage; } public void setTotalUsage(TotalUsage totalUsage) { this.totalUsage = totalUsage; } public static class Item { private Float usagePercentage; private String period; public Float getUsagePercentage() { return this.usagePercentage; } public void setUsagePercentage(Float usagePercentage) { this.usagePercentage = usagePercentage; } public String getPeriod() { return this.period; } public void setPeriod(String period) { this.period = period; } } public static class TotalUsage { private Float postpaidCost; private Float savedCost; private Float usagePercentage; private Float potentialSavedCost; private Float reservationCost; public Float getPostpaidCost() { return this.postpaidCost; } public void setPostpaidCost(Float postpaidCost) { this.postpaidCost = postpaidCost; } public Float getSavedCost() { return this.savedCost; } public void setSavedCost(Float savedCost) { this.savedCost = savedCost; } public Float getUsagePercentage() { return this.usagePercentage; } public void setUsagePercentage(Float usagePercentage) { this.usagePercentage = usagePercentage; } public Float getPotentialSavedCost() { return this.potentialSavedCost; } public void setPotentialSavedCost(Float potentialSavedCost) { this.potentialSavedCost = potentialSavedCost; } public Float getReservationCost() { return this.reservationCost; } public void setReservationCost(Float reservationCost) { this.reservationCost = reservationCost; } } } @Override public DescribeResourceUsageTotalResponse getInstance(UnmarshallerContext context) { return DescribeResourceUsageTotalResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeSavingsPlansCoverageDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeSavingsPlansCoverageDetailRequest extends RpcAcsRequest<DescribeSavingsPlansCoverageDetailResponse> { private String periodType; private Long billOwnerId; private String startPeriod; private String endPeriod; private String token; private Integer maxResults; public DescribeSavingsPlansCoverageDetailRequest() { super("BssOpenApi", "2017-12-14", "DescribeSavingsPlansCoverageDetail", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPeriodType() { return this.periodType; } public void setPeriodType(String periodType) { this.periodType = periodType; if(periodType != null){ putQueryParameter("PeriodType", periodType); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getStartPeriod() { return this.startPeriod; } public void setStartPeriod(String startPeriod) { this.startPeriod = startPeriod; if(startPeriod != null){ putQueryParameter("StartPeriod", startPeriod); } } public String getEndPeriod() { return this.endPeriod; } public void setEndPeriod(String endPeriod) { this.endPeriod = endPeriod; if(endPeriod != null){ putQueryParameter("EndPeriod", endPeriod); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putQueryParameter("MaxResults", maxResults.toString()); } } @Override public Class<DescribeSavingsPlansCoverageDetailResponse> getResponseClass() { return DescribeSavingsPlansCoverageDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeSavingsPlansCoverageDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeSavingsPlansCoverageDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSavingsPlansCoverageDetailResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer totalCount; private String nextToken; private List<Item> items; public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private Long userId; private Long ownerId; private String instanceId; private String currency; private String instanceSpec; private Float postpaidCost; private Float coveragePercentage; private String region; private Float deductAmount; private String startPeriod; private Float totalAmount; private String userName; private String endPeriod; public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public String getInstanceSpec() { return this.instanceSpec; } public void setInstanceSpec(String instanceSpec) { this.instanceSpec = instanceSpec; } public Float getPostpaidCost() { return this.postpaidCost; } public void setPostpaidCost(Float postpaidCost) { this.postpaidCost = postpaidCost; } public Float getCoveragePercentage() { return this.coveragePercentage; } public void setCoveragePercentage(Float coveragePercentage) { this.coveragePercentage = coveragePercentage; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public Float getDeductAmount() { return this.deductAmount; } public void setDeductAmount(Float deductAmount) { this.deductAmount = deductAmount; } public String getStartPeriod() { return this.startPeriod; } public void setStartPeriod(String startPeriod) { this.startPeriod = startPeriod; } public Float getTotalAmount() { return this.totalAmount; } public void setTotalAmount(Float totalAmount) { this.totalAmount = totalAmount; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getEndPeriod() { return this.endPeriod; } public void setEndPeriod(String endPeriod) { this.endPeriod = endPeriod; } } } @Override public DescribeSavingsPlansCoverageDetailResponse getInstance(UnmarshallerContext context) { return DescribeSavingsPlansCoverageDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeSavingsPlansCoverageTotalRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeSavingsPlansCoverageTotalRequest extends RpcAcsRequest<DescribeSavingsPlansCoverageTotalResponse> { private String periodType; private Long billOwnerId; private String startPeriod; private String endPeriod; public DescribeSavingsPlansCoverageTotalRequest() { super("BssOpenApi", "2017-12-14", "DescribeSavingsPlansCoverageTotal", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPeriodType() { return this.periodType; } public void setPeriodType(String periodType) { this.periodType = periodType; if(periodType != null){ putQueryParameter("PeriodType", periodType); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getStartPeriod() { return this.startPeriod; } public void setStartPeriod(String startPeriod) { this.startPeriod = startPeriod; if(startPeriod != null){ putQueryParameter("StartPeriod", startPeriod); } } public String getEndPeriod() { return this.endPeriod; } public void setEndPeriod(String endPeriod) { this.endPeriod = endPeriod; if(endPeriod != null){ putQueryParameter("EndPeriod", endPeriod); } } @Override public Class<DescribeSavingsPlansCoverageTotalResponse> getResponseClass() { return DescribeSavingsPlansCoverageTotalResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeSavingsPlansCoverageTotalResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeSavingsPlansCoverageTotalResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSavingsPlansCoverageTotalResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<Item> periodCoverage; private TotalCoverage totalCoverage; public List<Item> getPeriodCoverage() { return this.periodCoverage; } public void setPeriodCoverage(List<Item> periodCoverage) { this.periodCoverage = periodCoverage; } public TotalCoverage getTotalCoverage() { return this.totalCoverage; } public void setTotalCoverage(TotalCoverage totalCoverage) { this.totalCoverage = totalCoverage; } public static class Item { private Float percentage; private String period; public Float getPercentage() { return this.percentage; } public void setPercentage(Float percentage) { this.percentage = percentage; } public String getPeriod() { return this.period; } public void setPeriod(String period) { this.period = period; } } public static class TotalCoverage { private Float coveragePercentage; private Float deductAmount; public Float getCoveragePercentage() { return this.coveragePercentage; } public void setCoveragePercentage(Float coveragePercentage) { this.coveragePercentage = coveragePercentage; } public Float getDeductAmount() { return this.deductAmount; } public void setDeductAmount(Float deductAmount) { this.deductAmount = deductAmount; } } } @Override public DescribeSavingsPlansCoverageTotalResponse getInstance(UnmarshallerContext context) { return DescribeSavingsPlansCoverageTotalResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeSavingsPlansUsageDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeSavingsPlansUsageDetailRequest extends RpcAcsRequest<DescribeSavingsPlansUsageDetailResponse> { private String periodType; private Long billOwnerId; private String startPeriod; private String endPeriod; private String token; private Integer maxResults; public DescribeSavingsPlansUsageDetailRequest() { super("BssOpenApi", "2017-12-14", "DescribeSavingsPlansUsageDetail", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPeriodType() { return this.periodType; } public void setPeriodType(String periodType) { this.periodType = periodType; if(periodType != null){ putQueryParameter("PeriodType", periodType); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getStartPeriod() { return this.startPeriod; } public void setStartPeriod(String startPeriod) { this.startPeriod = startPeriod; if(startPeriod != null){ putQueryParameter("StartPeriod", startPeriod); } } public String getEndPeriod() { return this.endPeriod; } public void setEndPeriod(String endPeriod) { this.endPeriod = endPeriod; if(endPeriod != null){ putQueryParameter("EndPeriod", endPeriod); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putQueryParameter("MaxResults", maxResults.toString()); } } @Override public Class<DescribeSavingsPlansUsageDetailResponse> getResponseClass() { return DescribeSavingsPlansUsageDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeSavingsPlansUsageDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeSavingsPlansUsageDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSavingsPlansUsageDetailResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer totalCount; private String nextToken; private List<Item> items; public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String status; private String type; private Float usagePercentage; private Long userId; private String instanceId; private String currency; private Float postpaidCost; private Float deductValue; private String startPeriod; private Float savedCost; private Float poolValue; private String userName; private String endPeriod; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public Float getUsagePercentage() { return this.usagePercentage; } public void setUsagePercentage(Float usagePercentage) { this.usagePercentage = usagePercentage; } public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public Float getPostpaidCost() { return this.postpaidCost; } public void setPostpaidCost(Float postpaidCost) { this.postpaidCost = postpaidCost; } public Float getDeductValue() { return this.deductValue; } public void setDeductValue(Float deductValue) { this.deductValue = deductValue; } public String getStartPeriod() { return this.startPeriod; } public void setStartPeriod(String startPeriod) { this.startPeriod = startPeriod; } public Float getSavedCost() { return this.savedCost; } public void setSavedCost(Float savedCost) { this.savedCost = savedCost; } public Float getPoolValue() { return this.poolValue; } public void setPoolValue(Float poolValue) { this.poolValue = poolValue; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getEndPeriod() { return this.endPeriod; } public void setEndPeriod(String endPeriod) { this.endPeriod = endPeriod; } } } @Override public DescribeSavingsPlansUsageDetailResponse getInstance(UnmarshallerContext context) { return DescribeSavingsPlansUsageDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeSavingsPlansUsageTotalRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeSavingsPlansUsageTotalRequest extends RpcAcsRequest<DescribeSavingsPlansUsageTotalResponse> { private String periodType; private Long billOwnerId; private String startPeriod; private String endPeriod; public DescribeSavingsPlansUsageTotalRequest() { super("BssOpenApi", "2017-12-14", "DescribeSavingsPlansUsageTotal", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPeriodType() { return this.periodType; } public void setPeriodType(String periodType) { this.periodType = periodType; if(periodType != null){ putQueryParameter("PeriodType", periodType); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getStartPeriod() { return this.startPeriod; } public void setStartPeriod(String startPeriod) { this.startPeriod = startPeriod; if(startPeriod != null){ putQueryParameter("StartPeriod", startPeriod); } } public String getEndPeriod() { return this.endPeriod; } public void setEndPeriod(String endPeriod) { this.endPeriod = endPeriod; if(endPeriod != null){ putQueryParameter("EndPeriod", endPeriod); } } @Override public Class<DescribeSavingsPlansUsageTotalResponse> getResponseClass() { return DescribeSavingsPlansUsageTotalResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeSavingsPlansUsageTotalResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeSavingsPlansUsageTotalResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSavingsPlansUsageTotalResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<Item> periodCoverage; private TotalUsage totalUsage; public List<Item> getPeriodCoverage() { return this.periodCoverage; } public void setPeriodCoverage(List<Item> periodCoverage) { this.periodCoverage = periodCoverage; } public TotalUsage getTotalUsage() { return this.totalUsage; } public void setTotalUsage(TotalUsage totalUsage) { this.totalUsage = totalUsage; } public static class Item { private Float percentage; private String period; public Float getPercentage() { return this.percentage; } public void setPercentage(Float percentage) { this.percentage = percentage; } public String getPeriod() { return this.period; } public void setPeriod(String period) { this.period = period; } } public static class TotalUsage { private Float postpaidCost; private Float savedCost; private Float usagePercentage; private Float poolValue; public Float getPostpaidCost() { return this.postpaidCost; } public void setPostpaidCost(Float postpaidCost) { this.postpaidCost = postpaidCost; } public Float getSavedCost() { return this.savedCost; } public void setSavedCost(Float savedCost) { this.savedCost = savedCost; } public Float getUsagePercentage() { return this.usagePercentage; } public void setUsagePercentage(Float usagePercentage) { this.usagePercentage = usagePercentage; } public Float getPoolValue() { return this.poolValue; } public void setPoolValue(Float poolValue) { this.poolValue = poolValue; } } } @Override public DescribeSavingsPlansUsageTotalResponse getInstance(UnmarshallerContext context) { return DescribeSavingsPlansUsageTotalResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeSplitItemBillRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeSplitItemBillRequest extends RpcAcsRequest<DescribeSplitItemBillResponse> { private String productCode; private Boolean isHideZeroCharge; private String subscriptionType; private Long billOwnerId; private String productType; private String nextToken; private String splitItemID; private String billingCycle; private Long ownerId; private List<TagFilter> tagFilters; private String billingDate; private String instanceID; private String granularity; private Integer maxResults; private String pipCode; public DescribeSplitItemBillRequest() { super("BssOpenApi", "2017-12-14", "DescribeSplitItemBill", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public Boolean getIsHideZeroCharge() { return this.isHideZeroCharge; } public void setIsHideZeroCharge(Boolean isHideZeroCharge) { this.isHideZeroCharge = isHideZeroCharge; if(isHideZeroCharge != null){ putQueryParameter("IsHideZeroCharge", isHideZeroCharge.toString()); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putQueryParameter("NextToken", nextToken); } } public String getSplitItemID() { return this.splitItemID; } public void setSplitItemID(String splitItemID) { this.splitItemID = splitItemID; if(splitItemID != null){ putQueryParameter("SplitItemID", splitItemID); } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putQueryParameter("BillingCycle", billingCycle); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public List<TagFilter> getTagFilters() { return this.tagFilters; } public void setTagFilters(List<TagFilter> tagFilters) { this.tagFilters = tagFilters; if (tagFilters != null) { for (int depth1 = 0; depth1 < tagFilters.size(); depth1++) { if (tagFilters.get(depth1).getTagValuess() != null) { for (int i = 0; i < tagFilters.get(depth1).getTagValuess().size(); i++) { putQueryParameter("TagFilter." + (depth1 + 1) + ".TagValues." + (i + 1) , tagFilters.get(depth1).getTagValuess().get(i)); } } putQueryParameter("TagFilter." + (depth1 + 1) + ".TagKey" , tagFilters.get(depth1).getTagKey()); } } } public String getBillingDate() { return this.billingDate; } public void setBillingDate(String billingDate) { this.billingDate = billingDate; if(billingDate != null){ putQueryParameter("BillingDate", billingDate); } } public String getInstanceID() { return this.instanceID; } public void setInstanceID(String instanceID) { this.instanceID = instanceID; if(instanceID != null){ putQueryParameter("InstanceID", instanceID); } } public String getGranularity() { return this.granularity; } public void setGranularity(String granularity) { this.granularity = granularity; if(granularity != null){ putQueryParameter("Granularity", granularity); } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putQueryParameter("MaxResults", maxResults.toString()); } } public String getPipCode() { return this.pipCode; } public void setPipCode(String pipCode) { this.pipCode = pipCode; if(pipCode != null){ putQueryParameter("PipCode", pipCode); } } public static class TagFilter { private List<String> tagValuess; private String tagKey; public List<String> getTagValuess() { return this.tagValuess; } public void setTagValuess(List<String> tagValuess) { this.tagValuess = tagValuess; } public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } } @Override public Class<DescribeSplitItemBillResponse> getResponseClass() { return DescribeSplitItemBillResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeSplitItemBillResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeSplitItemBillResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSplitItemBillResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String nextToken; private String billingCycle; private Integer maxResults; private String accountID; private Integer totalCount; private String accountName; private List<Item> items; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String splitAccountID; private String billAccountName; private String subscriptionType; private String instanceSpec; private Float deductedByCoupons; private String region; private Float outstandingAmount; private String pipCode; private String commodityCode; private String nickName; private String productDetail; private String usage; private String intranetIP; private String usageUnit; private String splitCommodityCode; private String billAccountID; private String productType; private String deductedByResourcePackage; private Float paymentAmount; private String splitBillingCycle; private String servicePeriod; private String splitItemName; private String listPrice; private String zone; private Float pretaxGrossAmount; private Float cashAmount; private String instanceConfig; private String billingDate; private String internetIP; private String item; private String splitItemID; private String instanceID; private String tag; private String currency; private Float deductedByCashCoupons; private String bizType; private String billingItem; private String billingItemCode; private String costUnit; private String listPriceUnit; private String resourceGroup; private Float pretaxAmount; private String servicePeriodUnit; private String splitBillingDate; private String productName; private String splitProductDetail; private Float adjustAmount; private String ownerID; private Float deductedByPrepaidCard; private Float invoiceDiscount; private String splitAccountName; private String billingType; private String productCode; private String itemName; public String getSplitAccountID() { return this.splitAccountID; } public void setSplitAccountID(String splitAccountID) { this.splitAccountID = splitAccountID; } public String getBillAccountName() { return this.billAccountName; } public void setBillAccountName(String billAccountName) { this.billAccountName = billAccountName; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public String getInstanceSpec() { return this.instanceSpec; } public void setInstanceSpec(String instanceSpec) { this.instanceSpec = instanceSpec; } public Float getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(Float deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public Float getOutstandingAmount() { return this.outstandingAmount; } public void setOutstandingAmount(Float outstandingAmount) { this.outstandingAmount = outstandingAmount; } public String getPipCode() { return this.pipCode; } public void setPipCode(String pipCode) { this.pipCode = pipCode; } public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; } public String getNickName() { return this.nickName; } public void setNickName(String nickName) { this.nickName = nickName; } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; } public String getUsage() { return this.usage; } public void setUsage(String usage) { this.usage = usage; } public String getIntranetIP() { return this.intranetIP; } public void setIntranetIP(String intranetIP) { this.intranetIP = intranetIP; } public String getUsageUnit() { return this.usageUnit; } public void setUsageUnit(String usageUnit) { this.usageUnit = usageUnit; } public String getSplitCommodityCode() { return this.splitCommodityCode; } public void setSplitCommodityCode(String splitCommodityCode) { this.splitCommodityCode = splitCommodityCode; } public String getBillAccountID() { return this.billAccountID; } public void setBillAccountID(String billAccountID) { this.billAccountID = billAccountID; } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; } public String getDeductedByResourcePackage() { return this.deductedByResourcePackage; } public void setDeductedByResourcePackage(String deductedByResourcePackage) { this.deductedByResourcePackage = deductedByResourcePackage; } public Float getPaymentAmount() { return this.paymentAmount; } public void setPaymentAmount(Float paymentAmount) { this.paymentAmount = paymentAmount; } public String getSplitBillingCycle() { return this.splitBillingCycle; } public void setSplitBillingCycle(String splitBillingCycle) { this.splitBillingCycle = splitBillingCycle; } public String getServicePeriod() { return this.servicePeriod; } public void setServicePeriod(String servicePeriod) { this.servicePeriod = servicePeriod; } public String getSplitItemName() { return this.splitItemName; } public void setSplitItemName(String splitItemName) { this.splitItemName = splitItemName; } public String getListPrice() { return this.listPrice; } public void setListPrice(String listPrice) { this.listPrice = listPrice; } public String getZone() { return this.zone; } public void setZone(String zone) { this.zone = zone; } public Float getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(Float pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public Float getCashAmount() { return this.cashAmount; } public void setCashAmount(Float cashAmount) { this.cashAmount = cashAmount; } public String getInstanceConfig() { return this.instanceConfig; } public void setInstanceConfig(String instanceConfig) { this.instanceConfig = instanceConfig; } public String getBillingDate() { return this.billingDate; } public void setBillingDate(String billingDate) { this.billingDate = billingDate; } public String getInternetIP() { return this.internetIP; } public void setInternetIP(String internetIP) { this.internetIP = internetIP; } public String getItem() { return this.item; } public void setItem(String item) { this.item = item; } public String getSplitItemID() { return this.splitItemID; } public void setSplitItemID(String splitItemID) { this.splitItemID = splitItemID; } public String getInstanceID() { return this.instanceID; } public void setInstanceID(String instanceID) { this.instanceID = instanceID; } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public Float getDeductedByCashCoupons() { return this.deductedByCashCoupons; } public void setDeductedByCashCoupons(Float deductedByCashCoupons) { this.deductedByCashCoupons = deductedByCashCoupons; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } public String getBillingItem() { return this.billingItem; } public void setBillingItem(String billingItem) { this.billingItem = billingItem; } public String getBillingItemCode() { return this.billingItemCode; } public void setBillingItemCode(String billingItemCode) { this.billingItemCode = billingItemCode; } public String getCostUnit() { return this.costUnit; } public void setCostUnit(String costUnit) { this.costUnit = costUnit; } public String getListPriceUnit() { return this.listPriceUnit; } public void setListPriceUnit(String listPriceUnit) { this.listPriceUnit = listPriceUnit; } public String getResourceGroup() { return this.resourceGroup; } public void setResourceGroup(String resourceGroup) { this.resourceGroup = resourceGroup; } public Float getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(Float pretaxAmount) { this.pretaxAmount = pretaxAmount; } public String getServicePeriodUnit() { return this.servicePeriodUnit; } public void setServicePeriodUnit(String servicePeriodUnit) { this.servicePeriodUnit = servicePeriodUnit; } public String getSplitBillingDate() { return this.splitBillingDate; } public void setSplitBillingDate(String splitBillingDate) { this.splitBillingDate = splitBillingDate; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public String getSplitProductDetail() { return this.splitProductDetail; } public void setSplitProductDetail(String splitProductDetail) { this.splitProductDetail = splitProductDetail; } public Float getAdjustAmount() { return this.adjustAmount; } public void setAdjustAmount(Float adjustAmount) { this.adjustAmount = adjustAmount; } public String getOwnerID() { return this.ownerID; } public void setOwnerID(String ownerID) { this.ownerID = ownerID; } public Float getDeductedByPrepaidCard() { return this.deductedByPrepaidCard; } public void setDeductedByPrepaidCard(Float deductedByPrepaidCard) { this.deductedByPrepaidCard = deductedByPrepaidCard; } public Float getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Float invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public String getSplitAccountName() { return this.splitAccountName; } public void setSplitAccountName(String splitAccountName) { this.splitAccountName = splitAccountName; } public String getBillingType() { return this.billingType; } public void setBillingType(String billingType) { this.billingType = billingType; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public String getItemName() { return this.itemName; } public void setItemName(String itemName) { this.itemName = itemName; } } } @Override public DescribeSplitItemBillResponse getInstance(UnmarshallerContext context) { return DescribeSplitItemBillResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetAccountRelationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class GetAccountRelationRequest extends RpcAcsRequest<GetAccountRelationResponse> { private String requestId; private Long relationId; public GetAccountRelationRequest() { super("BssOpenApi", "2017-12-14", "GetAccountRelation", "bssopenapi"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; if(requestId != null){ putQueryParameter("RequestId", requestId); } } public Long getRelationId() { return this.relationId; } public void setRelationId(Long relationId) { this.relationId = relationId; if(relationId != null){ putQueryParameter("RelationId", relationId.toString()); } } @Override public Class<GetAccountRelationResponse> getResponseClass() { return GetAccountRelationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetAccountRelationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.GetAccountRelationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAccountRelationResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long id; private Long parentUserId; private Long childUserId; private Long startTime; private Long endTime; private String type; private String status; private Long gmtModified; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Long getParentUserId() { return this.parentUserId; } public void setParentUserId(Long parentUserId) { this.parentUserId = parentUserId; } public Long getChildUserId() { return this.childUserId; } public void setChildUserId(Long childUserId) { this.childUserId = childUserId; } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Long getGmtModified() { return this.gmtModified; } public void setGmtModified(Long gmtModified) { this.gmtModified = gmtModified; } } @Override public GetAccountRelationResponse getInstance(UnmarshallerContext context) { return GetAccountRelationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetCustomerAccountInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class GetCustomerAccountInfoRequest extends RpcAcsRequest<GetCustomerAccountInfoResponse> { private Long ownerId; public GetCustomerAccountInfoRequest() { super("BssOpenApi", "2017-12-14", "GetCustomerAccountInfo", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } @Override public Class<GetCustomerAccountInfoResponse> getResponseClass() { return GetCustomerAccountInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetCustomerAccountInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.GetCustomerAccountInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetCustomerAccountInfoResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long mpk; private String loginEmail; private String hostingStatus; private String accountType; private String creditLimitStatus; private Boolean isCertified; public Long getMpk() { return this.mpk; } public void setMpk(Long mpk) { this.mpk = mpk; } public String getLoginEmail() { return this.loginEmail; } public void setLoginEmail(String loginEmail) { this.loginEmail = loginEmail; } public String getHostingStatus() { return this.hostingStatus; } public void setHostingStatus(String hostingStatus) { this.hostingStatus = hostingStatus; } public String getAccountType() { return this.accountType; } public void setAccountType(String accountType) { this.accountType = accountType; } public String getCreditLimitStatus() { return this.creditLimitStatus; } public void setCreditLimitStatus(String creditLimitStatus) { this.creditLimitStatus = creditLimitStatus; } public Boolean getIsCertified() { return this.isCertified; } public void setIsCertified(Boolean isCertified) { this.isCertified = isCertified; } } @Override public GetCustomerAccountInfoResponse getInstance(UnmarshallerContext context) { return GetCustomerAccountInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetCustomerListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class GetCustomerListRequest extends RpcAcsRequest<GetCustomerListResponse> { public GetCustomerListRequest() { super("BssOpenApi", "2017-12-14", "GetCustomerList", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } @Override public Class<GetCustomerListResponse> getResponseClass() { return GetCustomerListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetCustomerListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.GetCustomerListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetCustomerListResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<String> uidList; public List<String> getUidList() { return this.uidList; } public void setUidList(List<String> uidList) { this.uidList = uidList; } } @Override public GetCustomerListResponse getInstance(UnmarshallerContext context) { return GetCustomerListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetOrderDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class GetOrderDetailRequest extends RpcAcsRequest<GetOrderDetailResponse> { private String orderId; private Long ownerId; public GetOrderDetailRequest() { super("BssOpenApi", "2017-12-14", "GetOrderDetail", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getOrderId() { return this.orderId; } public void setOrderId(String orderId) { this.orderId = orderId; if(orderId != null){ putQueryParameter("OrderId", orderId); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } @Override public Class<GetOrderDetailResponse> getResponseClass() { return GetOrderDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetOrderDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.GetOrderDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetOrderDetailResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String hostName; private Integer pageNum; private Integer pageSize; private Integer totalCount; private List<Order> orderList; public String getHostName() { return this.hostName; } public void setHostName(String hostName) { this.hostName = hostName; } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<Order> getOrderList() { return this.orderList; } public void setOrderList(List<Order> orderList) { this.orderList = orderList; } public static class Order { private String orderSubType; private String createTime; private String currency; private String config; private String subscriptionType; private String usageStartTime; private String usageEndTime; private String subOrderId; private String region; private String afterTaxAmount; private String paymentTime; private String operator; private String orderType; private String paymentStatus; private String quantity; private String pretaxAmountLocal; private String tax; private String originalConfig; private String pretaxAmount; private String commodityCode; private String relatedOrderId; private String paymentCurrency; private String productType; private String instanceIDs; private String pretaxGrossAmount; private String orderId; private String productCode; private Map<Object,Object> extendInfos; public String getOrderSubType() { return this.orderSubType; } public void setOrderSubType(String orderSubType) { this.orderSubType = orderSubType; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public String getConfig() { return this.config; } public void setConfig(String config) { this.config = config; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public String getUsageStartTime() { return this.usageStartTime; } public void setUsageStartTime(String usageStartTime) { this.usageStartTime = usageStartTime; } public String getUsageEndTime() { return this.usageEndTime; } public void setUsageEndTime(String usageEndTime) { this.usageEndTime = usageEndTime; } public String getSubOrderId() { return this.subOrderId; } public void setSubOrderId(String subOrderId) { this.subOrderId = subOrderId; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getAfterTaxAmount() { return this.afterTaxAmount; } public void setAfterTaxAmount(String afterTaxAmount) { this.afterTaxAmount = afterTaxAmount; } public String getPaymentTime() { return this.paymentTime; } public void setPaymentTime(String paymentTime) { this.paymentTime = paymentTime; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getOrderType() { return this.orderType; } public void setOrderType(String orderType) { this.orderType = orderType; } public String getPaymentStatus() { return this.paymentStatus; } public void setPaymentStatus(String paymentStatus) { this.paymentStatus = paymentStatus; } public String getQuantity() { return this.quantity; } public void setQuantity(String quantity) { this.quantity = quantity; } public String getPretaxAmountLocal() { return this.pretaxAmountLocal; } public void setPretaxAmountLocal(String pretaxAmountLocal) { this.pretaxAmountLocal = pretaxAmountLocal; } public String getTax() { return this.tax; } public void setTax(String tax) { this.tax = tax; } public String getOriginalConfig() { return this.originalConfig; } public void setOriginalConfig(String originalConfig) { this.originalConfig = originalConfig; } public String getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(String pretaxAmount) { this.pretaxAmount = pretaxAmount; } public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; } public String getRelatedOrderId() { return this.relatedOrderId; } public void setRelatedOrderId(String relatedOrderId) { this.relatedOrderId = relatedOrderId; } public String getPaymentCurrency() { return this.paymentCurrency; } public void setPaymentCurrency(String paymentCurrency) { this.paymentCurrency = paymentCurrency; } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; } public String getInstanceIDs() { return this.instanceIDs; } public void setInstanceIDs(String instanceIDs) { this.instanceIDs = instanceIDs; } public String getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(String pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public String getOrderId() { return this.orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public Map<Object,Object> getExtendInfos() { return this.extendInfos; } public void setExtendInfos(Map<Object,Object> extendInfos) { this.extendInfos = extendInfos; } } } @Override public GetOrderDetailResponse getInstance(UnmarshallerContext context) { return GetOrderDetailResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetPayAsYouGoPriceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class GetPayAsYouGoPriceRequest extends RpcAcsRequest<GetPayAsYouGoPriceResponse> { private String productCode; private String subscriptionType; private List<ModuleList> moduleLists; private Long ownerId; private String productType; private String region; public GetPayAsYouGoPriceRequest() { super("BssOpenApi", "2017-12-14", "GetPayAsYouGoPrice", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public List<ModuleList> getModuleLists() { return this.moduleLists; } public void setModuleLists(List<ModuleList> moduleLists) { this.moduleLists = moduleLists; if (moduleLists != null) { for (int depth1 = 0; depth1 < moduleLists.size(); depth1++) { putQueryParameter("ModuleList." + (depth1 + 1) + ".ModuleCode" , moduleLists.get(depth1).getModuleCode()); putQueryParameter("ModuleList." + (depth1 + 1) + ".PriceType" , moduleLists.get(depth1).getPriceType()); putQueryParameter("ModuleList." + (depth1 + 1) + ".Config" , moduleLists.get(depth1).getConfig()); } } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } public static class ModuleList { private String moduleCode; private String priceType; private String config; public String getModuleCode() { return this.moduleCode; } public void setModuleCode(String moduleCode) { this.moduleCode = moduleCode; } public String getPriceType() { return this.priceType; } public void setPriceType(String priceType) { this.priceType = priceType; } public String getConfig() { return this.config; } public void setConfig(String config) { this.config = config; } } @Override public Class<GetPayAsYouGoPriceResponse> getResponseClass() { return GetPayAsYouGoPriceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetPayAsYouGoPriceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.GetPayAsYouGoPriceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetPayAsYouGoPriceResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String currency; private List<ModuleDetail> moduleDetails; private List<PromotionDetail> promotionDetails; public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public List<ModuleDetail> getModuleDetails() { return this.moduleDetails; } public void setModuleDetails(List<ModuleDetail> moduleDetails) { this.moduleDetails = moduleDetails; } public List<PromotionDetail> getPromotionDetails() { return this.promotionDetails; } public void setPromotionDetails(List<PromotionDetail> promotionDetails) { this.promotionDetails = promotionDetails; } public static class ModuleDetail { private Float costAfterDiscount; private Float invoiceDiscount; private Float unitPrice; private Float originalCost; private String moduleCode; public Float getCostAfterDiscount() { return this.costAfterDiscount; } public void setCostAfterDiscount(Float costAfterDiscount) { this.costAfterDiscount = costAfterDiscount; } public Float getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Float invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public Float getUnitPrice() { return this.unitPrice; } public void setUnitPrice(Float unitPrice) { this.unitPrice = unitPrice; } public Float getOriginalCost() { return this.originalCost; } public void setOriginalCost(Float originalCost) { this.originalCost = originalCost; } public String getModuleCode() { return this.moduleCode; } public void setModuleCode(String moduleCode) { this.moduleCode = moduleCode; } } public static class PromotionDetail { private String promotionDesc; private Long promotionId; private String promotionName; public String getPromotionDesc() { return this.promotionDesc; } public void setPromotionDesc(String promotionDesc) { this.promotionDesc = promotionDesc; } public Long getPromotionId() { return this.promotionId; } public void setPromotionId(Long promotionId) { this.promotionId = promotionId; } public String getPromotionName() { return this.promotionName; } public void setPromotionName(String promotionName) { this.promotionName = promotionName; } } } @Override public GetPayAsYouGoPriceResponse getInstance(UnmarshallerContext context) { return GetPayAsYouGoPriceResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetResourcePackagePriceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class GetResourcePackagePriceRequest extends RpcAcsRequest<GetResourcePackagePriceResponse> { private String productCode; private String specification; private Long ownerId; private String effectiveDate; private Integer duration; private String instanceId; private String packageType; private String pricingCycle; private String orderType; public GetResourcePackagePriceRequest() { super("BssOpenApi", "2017-12-14", "GetResourcePackagePrice", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getSpecification() { return this.specification; } public void setSpecification(String specification) { this.specification = specification; if(specification != null){ putQueryParameter("Specification", specification); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getEffectiveDate() { return this.effectiveDate; } public void setEffectiveDate(String effectiveDate) { this.effectiveDate = effectiveDate; if(effectiveDate != null){ putQueryParameter("EffectiveDate", effectiveDate); } } public Integer getDuration() { return this.duration; } public void setDuration(Integer duration) { this.duration = duration; if(duration != null){ putQueryParameter("Duration", duration.toString()); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getPackageType() { return this.packageType; } public void setPackageType(String packageType) { this.packageType = packageType; if(packageType != null){ putQueryParameter("PackageType", packageType); } } public String getPricingCycle() { return this.pricingCycle; } public void setPricingCycle(String pricingCycle) { this.pricingCycle = pricingCycle; if(pricingCycle != null){ putQueryParameter("PricingCycle", pricingCycle); } } public String getOrderType() { return this.orderType; } public void setOrderType(String orderType) { this.orderType = orderType; if(orderType != null){ putQueryParameter("OrderType", orderType); } } @Override public Class<GetResourcePackagePriceResponse> getResponseClass() { return GetResourcePackagePriceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetResourcePackagePriceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.GetResourcePackagePriceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetResourcePackagePriceResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Float originalPrice; private Float discountPrice; private String currency; private Float tradePrice; private List<Promotion> promotions; public Float getOriginalPrice() { return this.originalPrice; } public void setOriginalPrice(Float originalPrice) { this.originalPrice = originalPrice; } public Float getDiscountPrice() { return this.discountPrice; } public void setDiscountPrice(Float discountPrice) { this.discountPrice = discountPrice; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public Float getTradePrice() { return this.tradePrice; } public void setTradePrice(Float tradePrice) { this.tradePrice = tradePrice; } public List<Promotion> getPromotions() { return this.promotions; } public void setPromotions(List<Promotion> promotions) { this.promotions = promotions; } public static class Promotion { private String name; private Long id; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } } } @Override public GetResourcePackagePriceResponse getInstance(UnmarshallerContext context) { return GetResourcePackagePriceResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetSubscriptionPriceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class GetSubscriptionPriceRequest extends RpcAcsRequest<GetSubscriptionPriceResponse> { private String productCode; private Integer quantity; private String subscriptionType; private List<ModuleList> moduleLists; private Long ownerId; private String productType; private Integer servicePeriodQuantity; private String instanceId; private String servicePeriodUnit; private String region; private String orderType; public GetSubscriptionPriceRequest() { super("BssOpenApi", "2017-12-14", "GetSubscriptionPrice", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public Integer getQuantity() { return this.quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; if(quantity != null){ putQueryParameter("Quantity", quantity.toString()); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public List<ModuleList> getModuleLists() { return this.moduleLists; } public void setModuleLists(List<ModuleList> moduleLists) { this.moduleLists = moduleLists; if (moduleLists != null) { for (int depth1 = 0; depth1 < moduleLists.size(); depth1++) { putQueryParameter("ModuleList." + (depth1 + 1) + ".ModuleCode" , moduleLists.get(depth1).getModuleCode()); putQueryParameter("ModuleList." + (depth1 + 1) + ".ModuleStatus" , moduleLists.get(depth1).getModuleStatus()); putQueryParameter("ModuleList." + (depth1 + 1) + ".Tag" , moduleLists.get(depth1).getTag()); putQueryParameter("ModuleList." + (depth1 + 1) + ".Config" , moduleLists.get(depth1).getConfig()); } } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public Integer getServicePeriodQuantity() { return this.servicePeriodQuantity; } public void setServicePeriodQuantity(Integer servicePeriodQuantity) { this.servicePeriodQuantity = servicePeriodQuantity; if(servicePeriodQuantity != null){ putQueryParameter("ServicePeriodQuantity", servicePeriodQuantity.toString()); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getServicePeriodUnit() { return this.servicePeriodUnit; } public void setServicePeriodUnit(String servicePeriodUnit) { this.servicePeriodUnit = servicePeriodUnit; if(servicePeriodUnit != null){ putQueryParameter("ServicePeriodUnit", servicePeriodUnit); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } public String getOrderType() { return this.orderType; } public void setOrderType(String orderType) { this.orderType = orderType; if(orderType != null){ putQueryParameter("OrderType", orderType); } } public static class ModuleList { private String moduleCode; private Integer moduleStatus; private String tag; private String config; public String getModuleCode() { return this.moduleCode; } public void setModuleCode(String moduleCode) { this.moduleCode = moduleCode; } public Integer getModuleStatus() { return this.moduleStatus; } public void setModuleStatus(Integer moduleStatus) { this.moduleStatus = moduleStatus; } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; } public String getConfig() { return this.config; } public void setConfig(String config) { this.config = config; } } @Override public Class<GetSubscriptionPriceResponse> getResponseClass() { return GetSubscriptionPriceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/GetSubscriptionPriceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.GetSubscriptionPriceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetSubscriptionPriceResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Float originalPrice; private Float discountPrice; private String currency; private Integer quantity; private Float tradePrice; private List<ModuleDetail> moduleDetails; private List<PromotionDetail> promotionDetails; public Float getOriginalPrice() { return this.originalPrice; } public void setOriginalPrice(Float originalPrice) { this.originalPrice = originalPrice; } public Float getDiscountPrice() { return this.discountPrice; } public void setDiscountPrice(Float discountPrice) { this.discountPrice = discountPrice; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public Integer getQuantity() { return this.quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; } public Float getTradePrice() { return this.tradePrice; } public void setTradePrice(Float tradePrice) { this.tradePrice = tradePrice; } public List<ModuleDetail> getModuleDetails() { return this.moduleDetails; } public void setModuleDetails(List<ModuleDetail> moduleDetails) { this.moduleDetails = moduleDetails; } public List<PromotionDetail> getPromotionDetails() { return this.promotionDetails; } public void setPromotionDetails(List<PromotionDetail> promotionDetails) { this.promotionDetails = promotionDetails; } public static class ModuleDetail { private Float costAfterDiscount; private Float invoiceDiscount; private Float unitPrice; private Float originalCost; private String moduleCode; public Float getCostAfterDiscount() { return this.costAfterDiscount; } public void setCostAfterDiscount(Float costAfterDiscount) { this.costAfterDiscount = costAfterDiscount; } public Float getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Float invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public Float getUnitPrice() { return this.unitPrice; } public void setUnitPrice(Float unitPrice) { this.unitPrice = unitPrice; } public Float getOriginalCost() { return this.originalCost; } public void setOriginalCost(Float originalCost) { this.originalCost = originalCost; } public String getModuleCode() { return this.moduleCode; } public void setModuleCode(String moduleCode) { this.moduleCode = moduleCode; } } public static class PromotionDetail { private String promotionDesc; private Long promotionId; private String promotionName; public String getPromotionDesc() { return this.promotionDesc; } public void setPromotionDesc(String promotionDesc) { this.promotionDesc = promotionDesc; } public Long getPromotionId() { return this.promotionId; } public void setPromotionId(Long promotionId) { this.promotionId = promotionId; } public String getPromotionName() { return this.promotionName; } public void setPromotionName(String promotionName) { this.promotionName = promotionName; } } } @Override public GetSubscriptionPriceResponse getInstance(UnmarshallerContext context) { return GetSubscriptionPriceResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/InquiryPriceRefundInstanceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class InquiryPriceRefundInstanceRequest extends RpcAcsRequest<InquiryPriceRefundInstanceResponse> { private String productCode; private String clientToken; private String productType; private String instanceId; public InquiryPriceRefundInstanceRequest() { super("BssOpenApi", "2017-12-14", "InquiryPriceRefundInstance", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putQueryParameter("ClientToken", clientToken); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<InquiryPriceRefundInstanceResponse> getResponseClass() { return InquiryPriceRefundInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/InquiryPriceRefundInstanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.InquiryPriceRefundInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class InquiryPriceRefundInstanceResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String hostId; private String instanceId; private String currency; private Double refundAmount; public String getHostId() { return this.hostId; } public void setHostId(String hostId) { this.hostId = hostId; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public Double getRefundAmount() { return this.refundAmount; } public void setRefundAmount(Double refundAmount) { this.refundAmount = refundAmount; } } @Override public InquiryPriceRefundInstanceResponse getInstance(UnmarshallerContext context) { return InquiryPriceRefundInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ModifyAccountRelationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class ModifyAccountRelationRequest extends RpcAcsRequest<ModifyAccountRelationResponse> { private String childNick; private Long parentUserId; private Long relationId; private List<String> roleCodess; private String relationOperation; private String relationType; private Long childUserId; private String requestId; private List<String> permissionCodess; public ModifyAccountRelationRequest() { super("BssOpenApi", "2017-12-14", "ModifyAccountRelation", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getChildNick() { return this.childNick; } public void setChildNick(String childNick) { this.childNick = childNick; if(childNick != null){ putQueryParameter("ChildNick", childNick); } } public Long getParentUserId() { return this.parentUserId; } public void setParentUserId(Long parentUserId) { this.parentUserId = parentUserId; if(parentUserId != null){ putQueryParameter("ParentUserId", parentUserId.toString()); } } public Long getRelationId() { return this.relationId; } public void setRelationId(Long relationId) { this.relationId = relationId; if(relationId != null){ putQueryParameter("RelationId", relationId.toString()); } } public List<String> getRoleCodess() { return this.roleCodess; } public void setRoleCodess(List<String> roleCodess) { this.roleCodess = roleCodess; if (roleCodess != null) { for (int i = 0; i < roleCodess.size(); i++) { putQueryParameter("RoleCodes." + (i + 1) , roleCodess.get(i)); } } } public String getRelationOperation() { return this.relationOperation; } public void setRelationOperation(String relationOperation) { this.relationOperation = relationOperation; if(relationOperation != null){ putQueryParameter("RelationOperation", relationOperation); } } public String getRelationType() { return this.relationType; } public void setRelationType(String relationType) { this.relationType = relationType; if(relationType != null){ putQueryParameter("RelationType", relationType); } } public Long getChildUserId() { return this.childUserId; } public void setChildUserId(Long childUserId) { this.childUserId = childUserId; if(childUserId != null){ putQueryParameter("ChildUserId", childUserId.toString()); } } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; if(requestId != null){ putQueryParameter("RequestId", requestId); } } public List<String> getPermissionCodess() { return this.permissionCodess; } public void setPermissionCodess(List<String> permissionCodess) { this.permissionCodess = permissionCodess; if (permissionCodess != null) { for (int i = 0; i < permissionCodess.size(); i++) { putQueryParameter("PermissionCodes." + (i + 1) , permissionCodess.get(i)); } } } @Override public Class<ModifyAccountRelationResponse> getResponseClass() { return ModifyAccountRelationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ModifyAccountRelationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.ModifyAccountRelationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyAccountRelationResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String hostId; public String getHostId() { return this.hostId; } public void setHostId(String hostId) { this.hostId = hostId; } } @Override public ModifyAccountRelationResponse getInstance(UnmarshallerContext context) { return ModifyAccountRelationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ModifyCostUnitRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class ModifyCostUnitRequest extends RpcAcsRequest<ModifyCostUnitResponse> { private List<UnitEntityList> unitEntityLists; public ModifyCostUnitRequest() { super("BssOpenApi", "2017-12-14", "ModifyCostUnit", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<UnitEntityList> getUnitEntityLists() { return this.unitEntityLists; } public void setUnitEntityLists(List<UnitEntityList> unitEntityLists) { this.unitEntityLists = unitEntityLists; if (unitEntityLists != null) { for (int depth1 = 0; depth1 < unitEntityLists.size(); depth1++) { putQueryParameter("UnitEntityList." + (depth1 + 1) + ".NewUnitName" , unitEntityLists.get(depth1).getNewUnitName()); putQueryParameter("UnitEntityList." + (depth1 + 1) + ".UnitId" , unitEntityLists.get(depth1).getUnitId()); putQueryParameter("UnitEntityList." + (depth1 + 1) + ".OwnerUid" , unitEntityLists.get(depth1).getOwnerUid()); } } } public static class UnitEntityList { private String newUnitName; private Long unitId; private Long ownerUid; public String getNewUnitName() { return this.newUnitName; } public void setNewUnitName(String newUnitName) { this.newUnitName = newUnitName; } public Long getUnitId() { return this.unitId; } public void setUnitId(Long unitId) { this.unitId = unitId; } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; } } @Override public Class<ModifyCostUnitResponse> getResponseClass() { return ModifyCostUnitResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ModifyCostUnitResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.ModifyCostUnitResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyCostUnitResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private List<DataItem> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private Boolean isSuccess; private Long unitId; private Long ownerUid; public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } public Long getUnitId() { return this.unitId; } public void setUnitId(Long unitId) { this.unitId = unitId; } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; } } @Override public ModifyCostUnitResponse getInstance(UnmarshallerContext context) { return ModifyCostUnitResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ModifyInstanceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class ModifyInstanceRequest extends RpcAcsRequest<ModifyInstanceResponse> { private String productCode; private String clientToken; private String subscriptionType; private Long ownerId; private String productType; private String instanceId; private String modifyType; private List<Parameter> parameters; public ModifyInstanceRequest() { super("BssOpenApi", "2017-12-14", "ModifyInstance", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putQueryParameter("ClientToken", clientToken); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getModifyType() { return this.modifyType; } public void setModifyType(String modifyType) { this.modifyType = modifyType; if(modifyType != null){ putQueryParameter("ModifyType", modifyType); } } public List<Parameter> getParameters() { return this.parameters; } public void setParameters(List<Parameter> parameters) { this.parameters = parameters; if (parameters != null) { for (int depth1 = 0; depth1 < parameters.size(); depth1++) { putQueryParameter("Parameter." + (depth1 + 1) + ".Code" , parameters.get(depth1).getCode()); putQueryParameter("Parameter." + (depth1 + 1) + ".Value" , parameters.get(depth1).getValue()); } } } public static class Parameter { private String code; private String value; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } @Override public Class<ModifyInstanceResponse> getResponseClass() { return ModifyInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ModifyInstanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.ModifyInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyInstanceResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String orderId; private String hostId; public String getOrderId() { return this.orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } public String getHostId() { return this.hostId; } public void setHostId(String hostId) { this.hostId = hostId; } } @Override public ModifyInstanceResponse getInstance(UnmarshallerContext context) { return ModifyInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryAccountBalanceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryAccountBalanceRequest extends RpcAcsRequest<QueryAccountBalanceResponse> { public QueryAccountBalanceRequest() { super("BssOpenApi", "2017-12-14", "QueryAccountBalance", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } @Override public Class<QueryAccountBalanceResponse> getResponseClass() { return QueryAccountBalanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryAccountBalanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryAccountBalanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryAccountBalanceResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String availableAmount; private String creditAmount; private String mybankCreditAmount; private String currency; private String availableCashAmount; private String quotaLimit; public String getAvailableAmount() { return this.availableAmount; } public void setAvailableAmount(String availableAmount) { this.availableAmount = availableAmount; } public String getCreditAmount() { return this.creditAmount; } public void setCreditAmount(String creditAmount) { this.creditAmount = creditAmount; } public String getMybankCreditAmount() { return this.mybankCreditAmount; } public void setMybankCreditAmount(String mybankCreditAmount) { this.mybankCreditAmount = mybankCreditAmount; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public String getAvailableCashAmount() { return this.availableCashAmount; } public void setAvailableCashAmount(String availableCashAmount) { this.availableCashAmount = availableCashAmount; } public String getQuotaLimit() { return this.quotaLimit; } public void setQuotaLimit(String quotaLimit) { this.quotaLimit = quotaLimit; } } @Override public QueryAccountBalanceResponse getInstance(UnmarshallerContext context) { return QueryAccountBalanceResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryAccountBillRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryAccountBillRequest extends RpcAcsRequest<QueryAccountBillResponse> { private String productCode; private String billingCycle; private Integer pageNum; private Long ownerID; private Long billOwnerId; private String billingDate; private Boolean isGroupByProduct; private String granularity; private Integer pageSize; public QueryAccountBillRequest() { super("BssOpenApi", "2017-12-14", "QueryAccountBill", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putQueryParameter("BillingCycle", billingCycle); } } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public Long getOwnerID() { return this.ownerID; } public void setOwnerID(Long ownerID) { this.ownerID = ownerID; if(ownerID != null){ putQueryParameter("OwnerID", ownerID.toString()); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getBillingDate() { return this.billingDate; } public void setBillingDate(String billingDate) { this.billingDate = billingDate; if(billingDate != null){ putQueryParameter("BillingDate", billingDate); } } public Boolean getIsGroupByProduct() { return this.isGroupByProduct; } public void setIsGroupByProduct(Boolean isGroupByProduct) { this.isGroupByProduct = isGroupByProduct; if(isGroupByProduct != null){ putQueryParameter("IsGroupByProduct", isGroupByProduct.toString()); } } public String getGranularity() { return this.granularity; } public void setGranularity(String granularity) { this.granularity = granularity; if(granularity != null){ putQueryParameter("Granularity", granularity); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<QueryAccountBillResponse> getResponseClass() { return QueryAccountBillResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryAccountBillResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryAccountBillResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryAccountBillResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNum; private String billingCycle; private String accountID; private Integer pageSize; private Integer totalCount; private String accountName; private List<Item> items; public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String pipCode; private Float pretaxAmount; private String billingDate; private String productName; private Float adjustAmount; private String ownerName; private String currency; private String billAccountName; private String subscriptionType; private Float deductedByCashCoupons; private String bizType; private String ownerID; private Float deductedByPrepaidCard; private Float deductedByCoupons; private String billAccountID; private Float paymentAmount; private Float invoiceDiscount; private Float outstandingAmount; private String costUnit; private Float pretaxGrossAmount; private Float cashAmount; private String productCode; public String getPipCode() { return this.pipCode; } public void setPipCode(String pipCode) { this.pipCode = pipCode; } public Float getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(Float pretaxAmount) { this.pretaxAmount = pretaxAmount; } public String getBillingDate() { return this.billingDate; } public void setBillingDate(String billingDate) { this.billingDate = billingDate; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public Float getAdjustAmount() { return this.adjustAmount; } public void setAdjustAmount(Float adjustAmount) { this.adjustAmount = adjustAmount; } public String getOwnerName() { return this.ownerName; } public void setOwnerName(String ownerName) { this.ownerName = ownerName; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public String getBillAccountName() { return this.billAccountName; } public void setBillAccountName(String billAccountName) { this.billAccountName = billAccountName; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public Float getDeductedByCashCoupons() { return this.deductedByCashCoupons; } public void setDeductedByCashCoupons(Float deductedByCashCoupons) { this.deductedByCashCoupons = deductedByCashCoupons; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } public String getOwnerID() { return this.ownerID; } public void setOwnerID(String ownerID) { this.ownerID = ownerID; } public Float getDeductedByPrepaidCard() { return this.deductedByPrepaidCard; } public void setDeductedByPrepaidCard(Float deductedByPrepaidCard) { this.deductedByPrepaidCard = deductedByPrepaidCard; } public Float getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(Float deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public String getBillAccountID() { return this.billAccountID; } public void setBillAccountID(String billAccountID) { this.billAccountID = billAccountID; } public Float getPaymentAmount() { return this.paymentAmount; } public void setPaymentAmount(Float paymentAmount) { this.paymentAmount = paymentAmount; } public Float getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Float invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public Float getOutstandingAmount() { return this.outstandingAmount; } public void setOutstandingAmount(Float outstandingAmount) { this.outstandingAmount = outstandingAmount; } public String getCostUnit() { return this.costUnit; } public void setCostUnit(String costUnit) { this.costUnit = costUnit; } public Float getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(Float pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public Float getCashAmount() { return this.cashAmount; } public void setCashAmount(Float cashAmount) { this.cashAmount = cashAmount; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } } } @Override public QueryAccountBillResponse getInstance(UnmarshallerContext context) { return QueryAccountBillResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryAccountTransactionDetailsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryAccountTransactionDetailsRequest extends RpcAcsRequest<QueryAccountTransactionDetailsResponse> { private String transactionType; private String createTimeEnd; private String recordID; private String nextToken; private Integer maxResults; private String transactionChannel; private String transactionChannelSN; private String createTimeStart; private String transactionNumber; public QueryAccountTransactionDetailsRequest() { super("BssOpenApi", "2017-12-14", "QueryAccountTransactionDetails", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getTransactionType() { return this.transactionType; } public void setTransactionType(String transactionType) { this.transactionType = transactionType; if(transactionType != null){ putQueryParameter("TransactionType", transactionType); } } public String getCreateTimeEnd() { return this.createTimeEnd; } public void setCreateTimeEnd(String createTimeEnd) { this.createTimeEnd = createTimeEnd; if(createTimeEnd != null){ putQueryParameter("CreateTimeEnd", createTimeEnd); } } public String getRecordID() { return this.recordID; } public void setRecordID(String recordID) { this.recordID = recordID; if(recordID != null){ putQueryParameter("RecordID", recordID); } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putQueryParameter("NextToken", nextToken); } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putQueryParameter("MaxResults", maxResults.toString()); } } public String getTransactionChannel() { return this.transactionChannel; } public void setTransactionChannel(String transactionChannel) { this.transactionChannel = transactionChannel; if(transactionChannel != null){ putQueryParameter("TransactionChannel", transactionChannel); } } public String getTransactionChannelSN() { return this.transactionChannelSN; } public void setTransactionChannelSN(String transactionChannelSN) { this.transactionChannelSN = transactionChannelSN; if(transactionChannelSN != null){ putQueryParameter("TransactionChannelSN", transactionChannelSN); } } public String getCreateTimeStart() { return this.createTimeStart; } public void setCreateTimeStart(String createTimeStart) { this.createTimeStart = createTimeStart; if(createTimeStart != null){ putQueryParameter("CreateTimeStart", createTimeStart); } } public String getTransactionNumber() { return this.transactionNumber; } public void setTransactionNumber(String transactionNumber) { this.transactionNumber = transactionNumber; if(transactionNumber != null){ putQueryParameter("TransactionNumber", transactionNumber); } } @Override public Class<QueryAccountTransactionDetailsResponse> getResponseClass() { return QueryAccountTransactionDetailsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryAccountTransactionDetailsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryAccountTransactionDetailsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryAccountTransactionDetailsResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String nextToken; private Integer totalCount; private Integer maxResults; private String accountName; private List<AccountTransactionsListItem> accountTransactionsList; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public List<AccountTransactionsListItem> getAccountTransactionsList() { return this.accountTransactionsList; } public void setAccountTransactionsList(List<AccountTransactionsListItem> accountTransactionsList) { this.accountTransactionsList = accountTransactionsList; } public static class AccountTransactionsListItem { private String billingCycle; private String transactionChannel; private String recordID; private String remarks; private String amount; private String transactionAccount; private String transactionTime; private String transactionType; private String transactionFlow; private String fundType; private String transactionChannelSN; private String transactionNumber; private String balance; public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; } public String getTransactionChannel() { return this.transactionChannel; } public void setTransactionChannel(String transactionChannel) { this.transactionChannel = transactionChannel; } public String getRecordID() { return this.recordID; } public void setRecordID(String recordID) { this.recordID = recordID; } public String getRemarks() { return this.remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } public String getAmount() { return this.amount; } public void setAmount(String amount) { this.amount = amount; } public String getTransactionAccount() { return this.transactionAccount; } public void setTransactionAccount(String transactionAccount) { this.transactionAccount = transactionAccount; } public String getTransactionTime() { return this.transactionTime; } public void setTransactionTime(String transactionTime) { this.transactionTime = transactionTime; } public String getTransactionType() { return this.transactionType; } public void setTransactionType(String transactionType) { this.transactionType = transactionType; } public String getTransactionFlow() { return this.transactionFlow; } public void setTransactionFlow(String transactionFlow) { this.transactionFlow = transactionFlow; } public String getFundType() { return this.fundType; } public void setFundType(String fundType) { this.fundType = fundType; } public String getTransactionChannelSN() { return this.transactionChannelSN; } public void setTransactionChannelSN(String transactionChannelSN) { this.transactionChannelSN = transactionChannelSN; } public String getTransactionNumber() { return this.transactionNumber; } public void setTransactionNumber(String transactionNumber) { this.transactionNumber = transactionNumber; } public String getBalance() { return this.balance; } public void setBalance(String balance) { this.balance = balance; } } } @Override public QueryAccountTransactionDetailsResponse getInstance(UnmarshallerContext context) { return QueryAccountTransactionDetailsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryAccountTransactionsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryAccountTransactionsRequest extends RpcAcsRequest<QueryAccountTransactionsResponse> { private Integer pageNum; private String transactionType; private String createTimeEnd; private String recordID; private Integer pageSize; private String transactionChannel; private String transactionChannelSN; private String createTimeStart; private String transactionNumber; private String transactionFlow; public QueryAccountTransactionsRequest() { super("BssOpenApi", "2017-12-14", "QueryAccountTransactions", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public String getTransactionType() { return this.transactionType; } public void setTransactionType(String transactionType) { this.transactionType = transactionType; if(transactionType != null){ putQueryParameter("TransactionType", transactionType); } } public String getCreateTimeEnd() { return this.createTimeEnd; } public void setCreateTimeEnd(String createTimeEnd) { this.createTimeEnd = createTimeEnd; if(createTimeEnd != null){ putQueryParameter("CreateTimeEnd", createTimeEnd); } } public String getRecordID() { return this.recordID; } public void setRecordID(String recordID) { this.recordID = recordID; if(recordID != null){ putQueryParameter("RecordID", recordID); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getTransactionChannel() { return this.transactionChannel; } public void setTransactionChannel(String transactionChannel) { this.transactionChannel = transactionChannel; if(transactionChannel != null){ putQueryParameter("TransactionChannel", transactionChannel); } } public String getTransactionChannelSN() { return this.transactionChannelSN; } public void setTransactionChannelSN(String transactionChannelSN) { this.transactionChannelSN = transactionChannelSN; if(transactionChannelSN != null){ putQueryParameter("TransactionChannelSN", transactionChannelSN); } } public String getCreateTimeStart() { return this.createTimeStart; } public void setCreateTimeStart(String createTimeStart) { this.createTimeStart = createTimeStart; if(createTimeStart != null){ putQueryParameter("CreateTimeStart", createTimeStart); } } public String getTransactionNumber() { return this.transactionNumber; } public void setTransactionNumber(String transactionNumber) { this.transactionNumber = transactionNumber; if(transactionNumber != null){ putQueryParameter("TransactionNumber", transactionNumber); } } public String getTransactionFlow() { return this.transactionFlow; } public void setTransactionFlow(String transactionFlow) { this.transactionFlow = transactionFlow; if(transactionFlow != null){ putQueryParameter("TransactionFlow", transactionFlow); } } @Override public Class<QueryAccountTransactionsResponse> getResponseClass() { return QueryAccountTransactionsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryAccountTransactionsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryAccountTransactionsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryAccountTransactionsResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNum; private Integer pageSize; private Integer totalCount; private String accountName; private List<AccountTransactionsListItem> accountTransactionsList; public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public List<AccountTransactionsListItem> getAccountTransactionsList() { return this.accountTransactionsList; } public void setAccountTransactionsList(List<AccountTransactionsListItem> accountTransactionsList) { this.accountTransactionsList = accountTransactionsList; } public static class AccountTransactionsListItem { private String billingCycle; private String transactionChannel; private String recordID; private String remarks; private String amount; private String transactionAccount; private String transactionTime; private String transactionType; private String transactionFlow; private String fundType; private String transactionChannelSN; private String transactionNumber; private String balance; public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; } public String getTransactionChannel() { return this.transactionChannel; } public void setTransactionChannel(String transactionChannel) { this.transactionChannel = transactionChannel; } public String getRecordID() { return this.recordID; } public void setRecordID(String recordID) { this.recordID = recordID; } public String getRemarks() { return this.remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } public String getAmount() { return this.amount; } public void setAmount(String amount) { this.amount = amount; } public String getTransactionAccount() { return this.transactionAccount; } public void setTransactionAccount(String transactionAccount) { this.transactionAccount = transactionAccount; } public String getTransactionTime() { return this.transactionTime; } public void setTransactionTime(String transactionTime) { this.transactionTime = transactionTime; } public String getTransactionType() { return this.transactionType; } public void setTransactionType(String transactionType) { this.transactionType = transactionType; } public String getTransactionFlow() { return this.transactionFlow; } public void setTransactionFlow(String transactionFlow) { this.transactionFlow = transactionFlow; } public String getFundType() { return this.fundType; } public void setFundType(String fundType) { this.fundType = fundType; } public String getTransactionChannelSN() { return this.transactionChannelSN; } public void setTransactionChannelSN(String transactionChannelSN) { this.transactionChannelSN = transactionChannelSN; } public String getTransactionNumber() { return this.transactionNumber; } public void setTransactionNumber(String transactionNumber) { this.transactionNumber = transactionNumber; } public String getBalance() { return this.balance; } public void setBalance(String balance) { this.balance = balance; } } } @Override public QueryAccountTransactionsResponse getInstance(UnmarshallerContext context) { return QueryAccountTransactionsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryAvailableInstancesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryAvailableInstancesRequest extends RpcAcsRequest<QueryAvailableInstancesResponse> { private String productCode; private String subscriptionType; private Integer pageNum; private String productType; private Integer pageSize; private String renewStatus; private Long ownerId; private String endTimeStart; private String createTimeEnd; private String instanceIDs; private String endTimeEnd; private String createTimeStart; private String region; public QueryAvailableInstancesRequest() { super("BssOpenApi", "2017-12-14", "QueryAvailableInstances", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getRenewStatus() { return this.renewStatus; } public void setRenewStatus(String renewStatus) { this.renewStatus = renewStatus; if(renewStatus != null){ putQueryParameter("RenewStatus", renewStatus); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getEndTimeStart() { return this.endTimeStart; } public void setEndTimeStart(String endTimeStart) { this.endTimeStart = endTimeStart; if(endTimeStart != null){ putQueryParameter("EndTimeStart", endTimeStart); } } public String getCreateTimeEnd() { return this.createTimeEnd; } public void setCreateTimeEnd(String createTimeEnd) { this.createTimeEnd = createTimeEnd; if(createTimeEnd != null){ putQueryParameter("CreateTimeEnd", createTimeEnd); } } public String getInstanceIDs() { return this.instanceIDs; } public void setInstanceIDs(String instanceIDs) { this.instanceIDs = instanceIDs; if(instanceIDs != null){ putQueryParameter("InstanceIDs", instanceIDs); } } public String getEndTimeEnd() { return this.endTimeEnd; } public void setEndTimeEnd(String endTimeEnd) { this.endTimeEnd = endTimeEnd; if(endTimeEnd != null){ putQueryParameter("EndTimeEnd", endTimeEnd); } } public String getCreateTimeStart() { return this.createTimeStart; } public void setCreateTimeStart(String createTimeStart) { this.createTimeStart = createTimeStart; if(createTimeStart != null){ putQueryParameter("CreateTimeStart", createTimeStart); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } @Override public Class<QueryAvailableInstancesResponse> getResponseClass() { return QueryAvailableInstancesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryAvailableInstancesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryAvailableInstancesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryAvailableInstancesResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNum; private Integer pageSize; private Integer totalCount; private List<Instance> instanceList; public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<Instance> getInstanceList() { return this.instanceList; } public void setInstanceList(List<Instance> instanceList) { this.instanceList = instanceList; } public static class Instance { private String subStatus; private String status; private String expectedReleaseTime; private String renewStatus; private String createTime; private Long sellerId; private String instanceID; private String seller; private String stopTime; private String renewalDurationUnit; private String subscriptionType; private Long ownerId; private String endTime; private String productType; private String region; private String releaseTime; private Integer renewalDuration; private String productCode; public String getSubStatus() { return this.subStatus; } public void setSubStatus(String subStatus) { this.subStatus = subStatus; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getExpectedReleaseTime() { return this.expectedReleaseTime; } public void setExpectedReleaseTime(String expectedReleaseTime) { this.expectedReleaseTime = expectedReleaseTime; } public String getRenewStatus() { return this.renewStatus; } public void setRenewStatus(String renewStatus) { this.renewStatus = renewStatus; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Long getSellerId() { return this.sellerId; } public void setSellerId(Long sellerId) { this.sellerId = sellerId; } public String getInstanceID() { return this.instanceID; } public void setInstanceID(String instanceID) { this.instanceID = instanceID; } public String getSeller() { return this.seller; } public void setSeller(String seller) { this.seller = seller; } public String getStopTime() { return this.stopTime; } public void setStopTime(String stopTime) { this.stopTime = stopTime; } public String getRenewalDurationUnit() { return this.renewalDurationUnit; } public void setRenewalDurationUnit(String renewalDurationUnit) { this.renewalDurationUnit = renewalDurationUnit; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getReleaseTime() { return this.releaseTime; } public void setReleaseTime(String releaseTime) { this.releaseTime = releaseTime; } public Integer getRenewalDuration() { return this.renewalDuration; } public void setRenewalDuration(Integer renewalDuration) { this.renewalDuration = renewalDuration; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } } } @Override public QueryAvailableInstancesResponse getInstance(UnmarshallerContext context) { return QueryAvailableInstancesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryBillOverviewRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryBillOverviewRequest extends RpcAcsRequest<QueryBillOverviewResponse> { private String productCode; private String subscriptionType; private String billingCycle; private Long billOwnerId; private String productType; public QueryBillOverviewRequest() { super("BssOpenApi", "2017-12-14", "QueryBillOverview", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putQueryParameter("BillingCycle", billingCycle); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } @Override public Class<QueryBillOverviewResponse> getResponseClass() { return QueryBillOverviewResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryBillOverviewResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryBillOverviewResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryBillOverviewResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String billingCycle; private String accountID; private String accountName; private List<Item> items; public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String roundDownDiscount; private String item; private String currency; private String subscriptionType; private Float deductedByCashCoupons; private String billAccountName; private String bizType; private Float deductedByCoupons; private Float outstandingAmount; private Float afterTaxAmount; private Float pretaxAmountLocal; private Float tax; private String pipCode; private Float pretaxAmount; private String productName; private String commodityCode; private Float adjustAmount; private String productDetail; private String paymentCurrency; private String ownerID; private Float deductedByPrepaidCard; private String productType; private Float invoiceDiscount; private Float paymentAmount; private String billAccountID; private Float pretaxGrossAmount; private Float cashAmount; private String productCode; public String getRoundDownDiscount() { return this.roundDownDiscount; } public void setRoundDownDiscount(String roundDownDiscount) { this.roundDownDiscount = roundDownDiscount; } public String getItem() { return this.item; } public void setItem(String item) { this.item = item; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public Float getDeductedByCashCoupons() { return this.deductedByCashCoupons; } public void setDeductedByCashCoupons(Float deductedByCashCoupons) { this.deductedByCashCoupons = deductedByCashCoupons; } public String getBillAccountName() { return this.billAccountName; } public void setBillAccountName(String billAccountName) { this.billAccountName = billAccountName; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } public Float getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(Float deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public Float getOutstandingAmount() { return this.outstandingAmount; } public void setOutstandingAmount(Float outstandingAmount) { this.outstandingAmount = outstandingAmount; } public Float getAfterTaxAmount() { return this.afterTaxAmount; } public void setAfterTaxAmount(Float afterTaxAmount) { this.afterTaxAmount = afterTaxAmount; } public Float getPretaxAmountLocal() { return this.pretaxAmountLocal; } public void setPretaxAmountLocal(Float pretaxAmountLocal) { this.pretaxAmountLocal = pretaxAmountLocal; } public Float getTax() { return this.tax; } public void setTax(Float tax) { this.tax = tax; } public String getPipCode() { return this.pipCode; } public void setPipCode(String pipCode) { this.pipCode = pipCode; } public Float getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(Float pretaxAmount) { this.pretaxAmount = pretaxAmount; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; } public Float getAdjustAmount() { return this.adjustAmount; } public void setAdjustAmount(Float adjustAmount) { this.adjustAmount = adjustAmount; } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; } public String getPaymentCurrency() { return this.paymentCurrency; } public void setPaymentCurrency(String paymentCurrency) { this.paymentCurrency = paymentCurrency; } public String getOwnerID() { return this.ownerID; } public void setOwnerID(String ownerID) { this.ownerID = ownerID; } public Float getDeductedByPrepaidCard() { return this.deductedByPrepaidCard; } public void setDeductedByPrepaidCard(Float deductedByPrepaidCard) { this.deductedByPrepaidCard = deductedByPrepaidCard; } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; } public Float getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Float invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public Float getPaymentAmount() { return this.paymentAmount; } public void setPaymentAmount(Float paymentAmount) { this.paymentAmount = paymentAmount; } public String getBillAccountID() { return this.billAccountID; } public void setBillAccountID(String billAccountID) { this.billAccountID = billAccountID; } public Float getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(Float pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public Float getCashAmount() { return this.cashAmount; } public void setCashAmount(Float cashAmount) { this.cashAmount = cashAmount; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } } } @Override public QueryBillOverviewResponse getInstance(UnmarshallerContext context) { return QueryBillOverviewResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryBillRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryBillRequest extends RpcAcsRequest<QueryBillResponse> { private String productCode; private Boolean isHideZeroCharge; private Boolean isDisplayLocalCurrency; private String subscriptionType; private String billingCycle; private String type; private Long ownerId; private Integer pageNum; private Long billOwnerId; private String productType; private Integer pageSize; public QueryBillRequest() { super("BssOpenApi", "2017-12-14", "QueryBill", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public Boolean getIsHideZeroCharge() { return this.isHideZeroCharge; } public void setIsHideZeroCharge(Boolean isHideZeroCharge) { this.isHideZeroCharge = isHideZeroCharge; if(isHideZeroCharge != null){ putQueryParameter("IsHideZeroCharge", isHideZeroCharge.toString()); } } public Boolean getIsDisplayLocalCurrency() { return this.isDisplayLocalCurrency; } public void setIsDisplayLocalCurrency(Boolean isDisplayLocalCurrency) { this.isDisplayLocalCurrency = isDisplayLocalCurrency; if(isDisplayLocalCurrency != null){ putQueryParameter("IsDisplayLocalCurrency", isDisplayLocalCurrency.toString()); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putQueryParameter("BillingCycle", billingCycle); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<QueryBillResponse> getResponseClass() { return QueryBillResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryBillResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryBillResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryBillResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNum; private String billingCycle; private String accountID; private Integer pageSize; private Integer totalCount; private String accountName; private List<Item> items; public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String status; private String roundDownDiscount; private String item; private String currency; private String usageStartTime; private String subscriptionType; private Float deductedByCashCoupons; private String usageEndTime; private Float deductedByCoupons; private String subOrderId; private Float outstandingAmount; private Float afterTaxAmount; private String paymentTime; private Float pretaxAmountLocal; private Float tax; private String pipCode; private String paymentTransactionID; private Float pretaxAmount; private String commodityCode; private String productName; private String recordID; private Float adjustAmount; private String productDetail; private String paymentCurrency; private String ownerID; private Float deductedByPrepaidCard; private String productType; private Float invoiceDiscount; private Float paymentAmount; private Float pretaxGrossAmount; private Float cashAmount; private String productCode; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getRoundDownDiscount() { return this.roundDownDiscount; } public void setRoundDownDiscount(String roundDownDiscount) { this.roundDownDiscount = roundDownDiscount; } public String getItem() { return this.item; } public void setItem(String item) { this.item = item; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public String getUsageStartTime() { return this.usageStartTime; } public void setUsageStartTime(String usageStartTime) { this.usageStartTime = usageStartTime; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public Float getDeductedByCashCoupons() { return this.deductedByCashCoupons; } public void setDeductedByCashCoupons(Float deductedByCashCoupons) { this.deductedByCashCoupons = deductedByCashCoupons; } public String getUsageEndTime() { return this.usageEndTime; } public void setUsageEndTime(String usageEndTime) { this.usageEndTime = usageEndTime; } public Float getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(Float deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public String getSubOrderId() { return this.subOrderId; } public void setSubOrderId(String subOrderId) { this.subOrderId = subOrderId; } public Float getOutstandingAmount() { return this.outstandingAmount; } public void setOutstandingAmount(Float outstandingAmount) { this.outstandingAmount = outstandingAmount; } public Float getAfterTaxAmount() { return this.afterTaxAmount; } public void setAfterTaxAmount(Float afterTaxAmount) { this.afterTaxAmount = afterTaxAmount; } public String getPaymentTime() { return this.paymentTime; } public void setPaymentTime(String paymentTime) { this.paymentTime = paymentTime; } public Float getPretaxAmountLocal() { return this.pretaxAmountLocal; } public void setPretaxAmountLocal(Float pretaxAmountLocal) { this.pretaxAmountLocal = pretaxAmountLocal; } public Float getTax() { return this.tax; } public void setTax(Float tax) { this.tax = tax; } public String getPipCode() { return this.pipCode; } public void setPipCode(String pipCode) { this.pipCode = pipCode; } public String getPaymentTransactionID() { return this.paymentTransactionID; } public void setPaymentTransactionID(String paymentTransactionID) { this.paymentTransactionID = paymentTransactionID; } public Float getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(Float pretaxAmount) { this.pretaxAmount = pretaxAmount; } public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public String getRecordID() { return this.recordID; } public void setRecordID(String recordID) { this.recordID = recordID; } public Float getAdjustAmount() { return this.adjustAmount; } public void setAdjustAmount(Float adjustAmount) { this.adjustAmount = adjustAmount; } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; } public String getPaymentCurrency() { return this.paymentCurrency; } public void setPaymentCurrency(String paymentCurrency) { this.paymentCurrency = paymentCurrency; } public String getOwnerID() { return this.ownerID; } public void setOwnerID(String ownerID) { this.ownerID = ownerID; } public Float getDeductedByPrepaidCard() { return this.deductedByPrepaidCard; } public void setDeductedByPrepaidCard(Float deductedByPrepaidCard) { this.deductedByPrepaidCard = deductedByPrepaidCard; } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; } public Float getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Float invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public Float getPaymentAmount() { return this.paymentAmount; } public void setPaymentAmount(Float paymentAmount) { this.paymentAmount = paymentAmount; } public Float getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(Float pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public Float getCashAmount() { return this.cashAmount; } public void setCashAmount(Float cashAmount) { this.cashAmount = cashAmount; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } } } @Override public QueryBillResponse getInstance(UnmarshallerContext context) { return QueryBillResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryBillToOSSSubscriptionRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryBillToOSSSubscriptionRequest extends RpcAcsRequest<QueryBillToOSSSubscriptionResponse> { public QueryBillToOSSSubscriptionRequest() { super("BssOpenApi", "2017-12-14", "QueryBillToOSSSubscription", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } @Override public Class<QueryBillToOSSSubscriptionResponse> getResponseClass() { return QueryBillToOSSSubscriptionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryBillToOSSSubscriptionResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryBillToOSSSubscriptionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryBillToOSSSubscriptionResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String accountName; private String accountID; private List<Item> items; public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private Long bucketOwnerId; private String subscribeType; private String subscribeBucket; private String subscribeTime; private String subscribeLanguage; private String multAccountRelSubscribe; private String bucketPath; private Integer rowLimitPerFile; public Long getBucketOwnerId() { return this.bucketOwnerId; } public void setBucketOwnerId(Long bucketOwnerId) { this.bucketOwnerId = bucketOwnerId; } public String getSubscribeType() { return this.subscribeType; } public void setSubscribeType(String subscribeType) { this.subscribeType = subscribeType; } public String getSubscribeBucket() { return this.subscribeBucket; } public void setSubscribeBucket(String subscribeBucket) { this.subscribeBucket = subscribeBucket; } public String getSubscribeTime() { return this.subscribeTime; } public void setSubscribeTime(String subscribeTime) { this.subscribeTime = subscribeTime; } public String getSubscribeLanguage() { return this.subscribeLanguage; } public void setSubscribeLanguage(String subscribeLanguage) { this.subscribeLanguage = subscribeLanguage; } public String getMultAccountRelSubscribe() { return this.multAccountRelSubscribe; } public void setMultAccountRelSubscribe(String multAccountRelSubscribe) { this.multAccountRelSubscribe = multAccountRelSubscribe; } public String getBucketPath() { return this.bucketPath; } public void setBucketPath(String bucketPath) { this.bucketPath = bucketPath; } public Integer getRowLimitPerFile() { return this.rowLimitPerFile; } public void setRowLimitPerFile(Integer rowLimitPerFile) { this.rowLimitPerFile = rowLimitPerFile; } } } @Override public QueryBillToOSSSubscriptionResponse getInstance(UnmarshallerContext context) { return QueryBillToOSSSubscriptionResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryCashCouponsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryCashCouponsRequest extends RpcAcsRequest<QueryCashCouponsResponse> { private String expiryTimeEnd; private String expiryTimeStart; private Boolean effectiveOrNot; public QueryCashCouponsRequest() { super("BssOpenApi", "2017-12-14", "QueryCashCoupons", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getExpiryTimeEnd() { return this.expiryTimeEnd; } public void setExpiryTimeEnd(String expiryTimeEnd) { this.expiryTimeEnd = expiryTimeEnd; if(expiryTimeEnd != null){ putQueryParameter("ExpiryTimeEnd", expiryTimeEnd); } } public String getExpiryTimeStart() { return this.expiryTimeStart; } public void setExpiryTimeStart(String expiryTimeStart) { this.expiryTimeStart = expiryTimeStart; if(expiryTimeStart != null){ putQueryParameter("ExpiryTimeStart", expiryTimeStart); } } public Boolean getEffectiveOrNot() { return this.effectiveOrNot; } public void setEffectiveOrNot(Boolean effectiveOrNot) { this.effectiveOrNot = effectiveOrNot; if(effectiveOrNot != null){ putQueryParameter("EffectiveOrNot", effectiveOrNot.toString()); } } @Override public Class<QueryCashCouponsResponse> getResponseClass() { return QueryCashCouponsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryCashCouponsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryCashCouponsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryCashCouponsResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private List<CashCoupon> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<CashCoupon> getData() { return this.data; } public void setData(List<CashCoupon> data) { this.data = data; } public static class CashCoupon { private String status; private String expiryTime; private String grantedTime; private String nominalValue; private String effectiveTime; private String applicableScenarios; private Long cashCouponId; private String applicableProducts; private String cashCouponNo; private String balance; private String description; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getExpiryTime() { return this.expiryTime; } public void setExpiryTime(String expiryTime) { this.expiryTime = expiryTime; } public String getGrantedTime() { return this.grantedTime; } public void setGrantedTime(String grantedTime) { this.grantedTime = grantedTime; } public String getNominalValue() { return this.nominalValue; } public void setNominalValue(String nominalValue) { this.nominalValue = nominalValue; } public String getEffectiveTime() { return this.effectiveTime; } public void setEffectiveTime(String effectiveTime) { this.effectiveTime = effectiveTime; } public String getApplicableScenarios() { return this.applicableScenarios; } public void setApplicableScenarios(String applicableScenarios) { this.applicableScenarios = applicableScenarios; } public Long getCashCouponId() { return this.cashCouponId; } public void setCashCouponId(Long cashCouponId) { this.cashCouponId = cashCouponId; } public String getApplicableProducts() { return this.applicableProducts; } public void setApplicableProducts(String applicableProducts) { this.applicableProducts = applicableProducts; } public String getCashCouponNo() { return this.cashCouponNo; } public void setCashCouponNo(String cashCouponNo) { this.cashCouponNo = cashCouponNo; } public String getBalance() { return this.balance; } public void setBalance(String balance) { this.balance = balance; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } } @Override public QueryCashCouponsResponse getInstance(UnmarshallerContext context) { return QueryCashCouponsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryCommodityListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryCommodityListRequest extends RpcAcsRequest<QueryCommodityListResponse> { private String productCode; private String lang; public QueryCommodityListRequest() { super("BssOpenApi", "2017-12-14", "QueryCommodityList", "bssopenapi"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<QueryCommodityListResponse> getResponseClass() { return QueryCommodityListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryCommodityListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryCommodityListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryCommodityListResponse extends AcsResponse { private String requestId; private String message; private Boolean success; private String code; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<CommodityDTO> commodityList; public List<CommodityDTO> getCommodityList() { return this.commodityList; } public void setCommodityList(List<CommodityDTO> commodityList) { this.commodityList = commodityList; } public static class CommodityDTO { private String commodityCode; private String commodityName; private String chargeType; public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; } public String getCommodityName() { return this.commodityName; } public void setCommodityName(String commodityName) { this.commodityName = commodityName; } public String getChargeType() { return this.chargeType; } public void setChargeType(String chargeType) { this.chargeType = chargeType; } } } @Override public QueryCommodityListResponse getInstance(UnmarshallerContext context) { return QueryCommodityListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryCostUnitRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryCostUnitRequest extends RpcAcsRequest<QueryCostUnitResponse> { private Long parentUnitId; private Integer pageNum; private Integer pageSize; private Long ownerUid; public QueryCostUnitRequest() { super("BssOpenApi", "2017-12-14", "QueryCostUnit", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getParentUnitId() { return this.parentUnitId; } public void setParentUnitId(Long parentUnitId) { this.parentUnitId = parentUnitId; if(parentUnitId != null){ putQueryParameter("ParentUnitId", parentUnitId.toString()); } } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; if(ownerUid != null){ putQueryParameter("OwnerUid", ownerUid.toString()); } } @Override public Class<QueryCostUnitResponse> getResponseClass() { return QueryCostUnitResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryCostUnitResourceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryCostUnitResourceRequest extends RpcAcsRequest<QueryCostUnitResourceResponse> { private Integer pageNum; private Integer pageSize; private Long unitId; private Long ownerUid; public QueryCostUnitResourceRequest() { super("BssOpenApi", "2017-12-14", "QueryCostUnitResource", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Long getUnitId() { return this.unitId; } public void setUnitId(Long unitId) { this.unitId = unitId; if(unitId != null){ putQueryParameter("UnitId", unitId.toString()); } } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; if(ownerUid != null){ putQueryParameter("OwnerUid", ownerUid.toString()); } } @Override public Class<QueryCostUnitResourceResponse> getResponseClass() { return QueryCostUnitResourceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryCostUnitResourceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryCostUnitResourceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryCostUnitResourceResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNum; private Integer pageSize; private Integer totalCount; private List<ResourceInstanceList> resourceInstanceDtoList; private CostUnit costUnit; private CostUnitStatisInfo costUnitStatisInfo; public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<ResourceInstanceList> getResourceInstanceDtoList() { return this.resourceInstanceDtoList; } public void setResourceInstanceDtoList(List<ResourceInstanceList> resourceInstanceDtoList) { this.resourceInstanceDtoList = resourceInstanceDtoList; } public CostUnit getCostUnit() { return this.costUnit; } public void setCostUnit(CostUnit costUnit) { this.costUnit = costUnit; } public CostUnitStatisInfo getCostUnitStatisInfo() { return this.costUnitStatisInfo; } public void setCostUnitStatisInfo(CostUnitStatisInfo costUnitStatisInfo) { this.costUnitStatisInfo = costUnitStatisInfo; } public static class ResourceInstanceList { private String commodityCode; private String resourceUserName; private String commodityName; private Long resourceUserId; private String apportionName; private String apportionCode; private String resourceType; private String resourceNick; private String resourceTag; private String resourceId; private String resourceGroup; private String relatedResources; private String resourceStatus; public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; } public String getResourceUserName() { return this.resourceUserName; } public void setResourceUserName(String resourceUserName) { this.resourceUserName = resourceUserName; } public String getCommodityName() { return this.commodityName; } public void setCommodityName(String commodityName) { this.commodityName = commodityName; } public Long getResourceUserId() { return this.resourceUserId; } public void setResourceUserId(Long resourceUserId) { this.resourceUserId = resourceUserId; } public String getApportionName() { return this.apportionName; } public void setApportionName(String apportionName) { this.apportionName = apportionName; } public String getApportionCode() { return this.apportionCode; } public void setApportionCode(String apportionCode) { this.apportionCode = apportionCode; } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; } public String getResourceNick() { return this.resourceNick; } public void setResourceNick(String resourceNick) { this.resourceNick = resourceNick; } public String getResourceTag() { return this.resourceTag; } public void setResourceTag(String resourceTag) { this.resourceTag = resourceTag; } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getResourceGroup() { return this.resourceGroup; } public void setResourceGroup(String resourceGroup) { this.resourceGroup = resourceGroup; } public String getRelatedResources() { return this.relatedResources; } public void setRelatedResources(String relatedResources) { this.relatedResources = relatedResources; } public String getResourceStatus() { return this.resourceStatus; } public void setResourceStatus(String resourceStatus) { this.resourceStatus = resourceStatus; } } public static class CostUnit { private Long parentUnitId; private String unitName; private Long unitId; private Long ownerUid; public Long getParentUnitId() { return this.parentUnitId; } public void setParentUnitId(Long parentUnitId) { this.parentUnitId = parentUnitId; } public String getUnitName() { return this.unitName; } public void setUnitName(String unitName) { this.unitName = unitName; } public Long getUnitId() { return this.unitId; } public void setUnitId(Long unitId) { this.unitId = unitId; } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; } } public static class CostUnitStatisInfo { private Long totalResourceCount; private Long resourceCount; private Long totalUserCount; private Long subUnitCount; private Long resourceGroupCount; private Long totalResourceGroupCount; private Long userCount; public Long getTotalResourceCount() { return this.totalResourceCount; } public void setTotalResourceCount(Long totalResourceCount) { this.totalResourceCount = totalResourceCount; } public Long getResourceCount() { return this.resourceCount; } public void setResourceCount(Long resourceCount) { this.resourceCount = resourceCount; } public Long getTotalUserCount() { return this.totalUserCount; } public void setTotalUserCount(Long totalUserCount) { this.totalUserCount = totalUserCount; } public Long getSubUnitCount() { return this.subUnitCount; } public void setSubUnitCount(Long subUnitCount) { this.subUnitCount = subUnitCount; } public Long getResourceGroupCount() { return this.resourceGroupCount; } public void setResourceGroupCount(Long resourceGroupCount) { this.resourceGroupCount = resourceGroupCount; } public Long getTotalResourceGroupCount() { return this.totalResourceGroupCount; } public void setTotalResourceGroupCount(Long totalResourceGroupCount) { this.totalResourceGroupCount = totalResourceGroupCount; } public Long getUserCount() { return this.userCount; } public void setUserCount(Long userCount) { this.userCount = userCount; } } } @Override public QueryCostUnitResourceResponse getInstance(UnmarshallerContext context) { return QueryCostUnitResourceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryCostUnitResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryCostUnitResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryCostUnitResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNum; private Integer pageSize; private Integer totalCount; private List<CostUnitDtoListItem> costUnitDtoList; public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<CostUnitDtoListItem> getCostUnitDtoList() { return this.costUnitDtoList; } public void setCostUnitDtoList(List<CostUnitDtoListItem> costUnitDtoList) { this.costUnitDtoList = costUnitDtoList; } public static class CostUnitDtoListItem { private Long parentUnitId; private String unitName; private Long unitId; private Long ownerUid; public Long getParentUnitId() { return this.parentUnitId; } public void setParentUnitId(Long parentUnitId) { this.parentUnitId = parentUnitId; } public String getUnitName() { return this.unitName; } public void setUnitName(String unitName) { this.unitName = unitName; } public Long getUnitId() { return this.unitId; } public void setUnitId(Long unitId) { this.unitId = unitId; } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; } } } @Override public QueryCostUnitResponse getInstance(UnmarshallerContext context) { return QueryCostUnitResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryCustomerAddressListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryCustomerAddressListRequest extends RpcAcsRequest<QueryCustomerAddressListResponse> { private Long ownerId; public QueryCustomerAddressListRequest() { super("BssOpenApi", "2017-12-14", "QueryCustomerAddressList", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } @Override public Class<QueryCustomerAddressListResponse> getResponseClass() { return QueryCustomerAddressListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryCustomerAddressListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryCustomerAddressListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryCustomerAddressListResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<CustomerInvoiceAddress> customerInvoiceAddressList; public List<CustomerInvoiceAddress> getCustomerInvoiceAddressList() { return this.customerInvoiceAddressList; } public void setCustomerInvoiceAddressList(List<CustomerInvoiceAddress> customerInvoiceAddressList) { this.customerInvoiceAddressList = customerInvoiceAddressList; } public static class CustomerInvoiceAddress { private String addressee; private String postalCode; private Long userId; private String city; private String userNick; private String street; private String phone; private String county; private String bizType; private String deliveryAddress; private Long id; private String province; public String getAddressee() { return this.addressee; } public void setAddressee(String addressee) { this.addressee = addressee; } public String getPostalCode() { return this.postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; } public String getCity() { return this.city; } public void setCity(String city) { this.city = city; } public String getUserNick() { return this.userNick; } public void setUserNick(String userNick) { this.userNick = userNick; } public String getStreet() { return this.street; } public void setStreet(String street) { this.street = street; } public String getPhone() { return this.phone; } public void setPhone(String phone) { this.phone = phone; } public String getCounty() { return this.county; } public void setCounty(String county) { this.county = county; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } public String getDeliveryAddress() { return this.deliveryAddress; } public void setDeliveryAddress(String deliveryAddress) { this.deliveryAddress = deliveryAddress; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getProvince() { return this.province; } public void setProvince(String province) { this.province = province; } } } @Override public QueryCustomerAddressListResponse getInstance(UnmarshallerContext context) { return QueryCustomerAddressListResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryDPUtilizationDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryDPUtilizationDetailRequest extends RpcAcsRequest<QueryDPUtilizationDetailResponse> { private String deductedInstanceId; private String lastToken; private String instanceSpec; private String prodCode; private String endTime; private Boolean includeShare; private String commodityCode; private String startTime; private String instanceId; private Integer limit; public QueryDPUtilizationDetailRequest() { super("BssOpenApi", "2017-12-14", "QueryDPUtilizationDetail", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDeductedInstanceId() { return this.deductedInstanceId; } public void setDeductedInstanceId(String deductedInstanceId) { this.deductedInstanceId = deductedInstanceId; if(deductedInstanceId != null){ putQueryParameter("DeductedInstanceId", deductedInstanceId); } } public String getLastToken() { return this.lastToken; } public void setLastToken(String lastToken) { this.lastToken = lastToken; if(lastToken != null){ putQueryParameter("LastToken", lastToken); } } public String getInstanceSpec() { return this.instanceSpec; } public void setInstanceSpec(String instanceSpec) { this.instanceSpec = instanceSpec; if(instanceSpec != null){ putQueryParameter("InstanceSpec", instanceSpec); } } public String getProdCode() { return this.prodCode; } public void setProdCode(String prodCode) { this.prodCode = prodCode; if(prodCode != null){ putQueryParameter("ProdCode", prodCode); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime); } } public Boolean getIncludeShare() { return this.includeShare; } public void setIncludeShare(Boolean includeShare) { this.includeShare = includeShare; if(includeShare != null){ putQueryParameter("IncludeShare", includeShare.toString()); } } public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; if(commodityCode != null){ putQueryParameter("CommodityCode", commodityCode); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public Integer getLimit() { return this.limit; } public void setLimit(Integer limit) { this.limit = limit; if(limit != null){ putQueryParameter("Limit", limit.toString()); } } @Override public Class<QueryDPUtilizationDetailResponse> getResponseClass() { return QueryDPUtilizationDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryDPUtilizationDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryDPUtilizationDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryDPUtilizationDetailResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String nextToken; private List<DetailListItem> detailList; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public List<DetailListItem> getDetailList() { return this.detailList; } public void setDetailList(List<DetailListItem> detailList) { this.detailList = detailList; } public static class DetailListItem { private String deductedInstanceId; private String instanceId; private Float deductHours; private Long shareUid; private String deductDate; private String instanceSpec; private String deductedCommodityCode; private String deductedProductDetail; private Float deductMeasure; private String region; private Float deductQuantity; private Float deductFactorTotal; private String resCode; private Long uid; public String getDeductedInstanceId() { return this.deductedInstanceId; } public void setDeductedInstanceId(String deductedInstanceId) { this.deductedInstanceId = deductedInstanceId; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public Float getDeductHours() { return this.deductHours; } public void setDeductHours(Float deductHours) { this.deductHours = deductHours; } public Long getShareUid() { return this.shareUid; } public void setShareUid(Long shareUid) { this.shareUid = shareUid; } public String getDeductDate() { return this.deductDate; } public void setDeductDate(String deductDate) { this.deductDate = deductDate; } public String getInstanceSpec() { return this.instanceSpec; } public void setInstanceSpec(String instanceSpec) { this.instanceSpec = instanceSpec; } public String getDeductedCommodityCode() { return this.deductedCommodityCode; } public void setDeductedCommodityCode(String deductedCommodityCode) { this.deductedCommodityCode = deductedCommodityCode; } public String getDeductedProductDetail() { return this.deductedProductDetail; } public void setDeductedProductDetail(String deductedProductDetail) { this.deductedProductDetail = deductedProductDetail; } public Float getDeductMeasure() { return this.deductMeasure; } public void setDeductMeasure(Float deductMeasure) { this.deductMeasure = deductMeasure; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public Float getDeductQuantity() { return this.deductQuantity; } public void setDeductQuantity(Float deductQuantity) { this.deductQuantity = deductQuantity; } public Float getDeductFactorTotal() { return this.deductFactorTotal; } public void setDeductFactorTotal(Float deductFactorTotal) { this.deductFactorTotal = deductFactorTotal; } public String getResCode() { return this.resCode; } public void setResCode(String resCode) { this.resCode = resCode; } public Long getUid() { return this.uid; } public void setUid(Long uid) { this.uid = uid; } } } @Override public QueryDPUtilizationDetailResponse getInstance(UnmarshallerContext context) { return QueryDPUtilizationDetailResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryEvaluateListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryEvaluateListRequest extends RpcAcsRequest<QueryEvaluateListResponse> { private String endSearchTime; private String outBizId; private Integer sortType; private Integer type; private Integer pageNum; private Integer pageSize; private Long endAmount; private String billCycle; private List<String> bizTypeLists; private Long ownerId; private String startSearchTime; private String endBizTime; private Long startAmount; private String startBizTime; public QueryEvaluateListRequest() { super("BssOpenApi", "2017-12-14", "QueryEvaluateList", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getEndSearchTime() { return this.endSearchTime; } public void setEndSearchTime(String endSearchTime) { this.endSearchTime = endSearchTime; if(endSearchTime != null){ putQueryParameter("EndSearchTime", endSearchTime); } } public String getOutBizId() { return this.outBizId; } public void setOutBizId(String outBizId) { this.outBizId = outBizId; if(outBizId != null){ putQueryParameter("OutBizId", outBizId); } } public Integer getSortType() { return this.sortType; } public void setSortType(Integer sortType) { this.sortType = sortType; if(sortType != null){ putQueryParameter("SortType", sortType.toString()); } } public Integer getType() { return this.type; } public void setType(Integer type) { this.type = type; if(type != null){ putQueryParameter("Type", type.toString()); } } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Long getEndAmount() { return this.endAmount; } public void setEndAmount(Long endAmount) { this.endAmount = endAmount; if(endAmount != null){ putQueryParameter("EndAmount", endAmount.toString()); } } public String getBillCycle() { return this.billCycle; } public void setBillCycle(String billCycle) { this.billCycle = billCycle; if(billCycle != null){ putQueryParameter("BillCycle", billCycle); } } public List<String> getBizTypeLists() { return this.bizTypeLists; } public void setBizTypeLists(List<String> bizTypeLists) { this.bizTypeLists = bizTypeLists; if (bizTypeLists != null) { for (int i = 0; i < bizTypeLists.size(); i++) { putQueryParameter("BizTypeList." + (i + 1) , bizTypeLists.get(i)); } } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getStartSearchTime() { return this.startSearchTime; } public void setStartSearchTime(String startSearchTime) { this.startSearchTime = startSearchTime; if(startSearchTime != null){ putQueryParameter("StartSearchTime", startSearchTime); } } public String getEndBizTime() { return this.endBizTime; } public void setEndBizTime(String endBizTime) { this.endBizTime = endBizTime; if(endBizTime != null){ putQueryParameter("EndBizTime", endBizTime); } } public Long getStartAmount() { return this.startAmount; } public void setStartAmount(Long startAmount) { this.startAmount = startAmount; if(startAmount != null){ putQueryParameter("StartAmount", startAmount.toString()); } } public String getStartBizTime() { return this.startBizTime; } public void setStartBizTime(String startBizTime) { this.startBizTime = startBizTime; if(startBizTime != null){ putQueryParameter("StartBizTime", startBizTime); } } @Override public Class<QueryEvaluateListResponse> getResponseClass() { return QueryEvaluateListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryEvaluateListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryEvaluateListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryEvaluateListResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNum; private Long totalUnAppliedInvoiceAmount; private Integer pageSize; private Integer totalCount; private Long totalInvoiceAmount; private String hostId; private List<Evaluate> evaluateList; public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public Long getTotalUnAppliedInvoiceAmount() { return this.totalUnAppliedInvoiceAmount; } public void setTotalUnAppliedInvoiceAmount(Long totalUnAppliedInvoiceAmount) { this.totalUnAppliedInvoiceAmount = totalUnAppliedInvoiceAmount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Long getTotalInvoiceAmount() { return this.totalInvoiceAmount; } public void setTotalInvoiceAmount(Long totalInvoiceAmount) { this.totalInvoiceAmount = totalInvoiceAmount; } public String getHostId() { return this.hostId; } public void setHostId(String hostId) { this.hostId = hostId; } public List<Evaluate> getEvaluateList() { return this.evaluateList; } public void setEvaluateList(List<Evaluate> evaluateList) { this.evaluateList = evaluateList; } public static class Evaluate { private Integer type; private Integer status; private Long billId; private Long userId; private String billCycle; private Long canInvoiceAmount; private Long offsetAcceptAmount; private Long itemId; private String outBizId; private String userNick; private String gmtModified; private String opId; private String bizType; private Long originalAmount; private Long invoicedAmount; private String gmtCreate; private Long presentAmount; private String bizTime; private String name; private Long offsetCostAmount; private Long id; public Integer getType() { return this.type; } public void setType(Integer type) { this.type = type; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public Long getBillId() { return this.billId; } public void setBillId(Long billId) { this.billId = billId; } public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; } public String getBillCycle() { return this.billCycle; } public void setBillCycle(String billCycle) { this.billCycle = billCycle; } public Long getCanInvoiceAmount() { return this.canInvoiceAmount; } public void setCanInvoiceAmount(Long canInvoiceAmount) { this.canInvoiceAmount = canInvoiceAmount; } public Long getOffsetAcceptAmount() { return this.offsetAcceptAmount; } public void setOffsetAcceptAmount(Long offsetAcceptAmount) { this.offsetAcceptAmount = offsetAcceptAmount; } public Long getItemId() { return this.itemId; } public void setItemId(Long itemId) { this.itemId = itemId; } public String getOutBizId() { return this.outBizId; } public void setOutBizId(String outBizId) { this.outBizId = outBizId; } public String getUserNick() { return this.userNick; } public void setUserNick(String userNick) { this.userNick = userNick; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public String getOpId() { return this.opId; } public void setOpId(String opId) { this.opId = opId; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } public Long getOriginalAmount() { return this.originalAmount; } public void setOriginalAmount(Long originalAmount) { this.originalAmount = originalAmount; } public Long getInvoicedAmount() { return this.invoicedAmount; } public void setInvoicedAmount(Long invoicedAmount) { this.invoicedAmount = invoicedAmount; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public Long getPresentAmount() { return this.presentAmount; } public void setPresentAmount(Long presentAmount) { this.presentAmount = presentAmount; } public String getBizTime() { return this.bizTime; } public void setBizTime(String bizTime) { this.bizTime = bizTime; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Long getOffsetCostAmount() { return this.offsetCostAmount; } public void setOffsetCostAmount(Long offsetCostAmount) { this.offsetCostAmount = offsetCostAmount; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } } } @Override public QueryEvaluateListResponse getInstance(UnmarshallerContext context) { return QueryEvaluateListResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryFinancialAccountInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryFinancialAccountInfoRequest extends RpcAcsRequest<QueryFinancialAccountInfoResponse> { private Long userId; public QueryFinancialAccountInfoRequest() { super("BssOpenApi", "2017-12-14", "QueryFinancialAccountInfo", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; if(userId != null){ putQueryParameter("UserId", userId.toString()); } } @Override public Class<QueryFinancialAccountInfoResponse> getResponseClass() { return QueryFinancialAccountInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryFinancialAccountInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryFinancialAccountInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryFinancialAccountInfoResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String memberNickName; private Boolean isFinancialAccount; private String memberGroupName; private String userName; private String accountType; private Long memberGroupId; public String getMemberNickName() { return this.memberNickName; } public void setMemberNickName(String memberNickName) { this.memberNickName = memberNickName; } public Boolean getIsFinancialAccount() { return this.isFinancialAccount; } public void setIsFinancialAccount(Boolean isFinancialAccount) { this.isFinancialAccount = isFinancialAccount; } public String getMemberGroupName() { return this.memberGroupName; } public void setMemberGroupName(String memberGroupName) { this.memberGroupName = memberGroupName; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getAccountType() { return this.accountType; } public void setAccountType(String accountType) { this.accountType = accountType; } public Long getMemberGroupId() { return this.memberGroupId; } public void setMemberGroupId(Long memberGroupId) { this.memberGroupId = memberGroupId; } } @Override public QueryFinancialAccountInfoResponse getInstance(UnmarshallerContext context) { return QueryFinancialAccountInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryInstanceBillRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryInstanceBillRequest extends RpcAcsRequest<QueryInstanceBillResponse> { private String productCode; private Boolean isHideZeroCharge; private String subscriptionType; private String billingCycle; private Long ownerId; private Integer pageNum; private Long billOwnerId; private String billingDate; private String productType; private Boolean isBillingItem; private String granularity; private Integer pageSize; public QueryInstanceBillRequest() { super("BssOpenApi", "2017-12-14", "QueryInstanceBill", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public Boolean getIsHideZeroCharge() { return this.isHideZeroCharge; } public void setIsHideZeroCharge(Boolean isHideZeroCharge) { this.isHideZeroCharge = isHideZeroCharge; if(isHideZeroCharge != null){ putQueryParameter("IsHideZeroCharge", isHideZeroCharge.toString()); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putQueryParameter("BillingCycle", billingCycle); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getBillingDate() { return this.billingDate; } public void setBillingDate(String billingDate) { this.billingDate = billingDate; if(billingDate != null){ putQueryParameter("BillingDate", billingDate); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public Boolean getIsBillingItem() { return this.isBillingItem; } public void setIsBillingItem(Boolean isBillingItem) { this.isBillingItem = isBillingItem; if(isBillingItem != null){ putQueryParameter("IsBillingItem", isBillingItem.toString()); } } public String getGranularity() { return this.granularity; } public void setGranularity(String granularity) { this.granularity = granularity; if(granularity != null){ putQueryParameter("Granularity", granularity); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<QueryInstanceBillResponse> getResponseClass() { return QueryInstanceBillResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryInstanceBillResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryInstanceBillResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryInstanceBillResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNum; private String billingCycle; private String accountID; private Integer pageSize; private Integer totalCount; private String accountName; private List<Item> items; public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String billingDate; private String instanceConfig; private String internetIP; private String item; private String tag; private String instanceID; private String currency; private Float deductedByCashCoupons; private String subscriptionType; private String instanceSpec; private Float deductedByCoupons; private String billingItem; private String region; private Float outstandingAmount; private String costUnit; private String listPriceUnit; private String resourceGroup; private String pipCode; private String servicePeriodUnit; private Float pretaxAmount; private String commodityCode; private String productName; private Float adjustAmount; private String nickName; private String productDetail; private String usage; private String intranetIP; private String ownerID; private Float deductedByPrepaidCard; private String usageUnit; private Float paymentAmount; private Float invoiceDiscount; private String deductedByResourcePackage; private String productType; private String servicePeriod; private String zone; private String listPrice; private Float pretaxGrossAmount; private Float cashAmount; private String productCode; private String billingType; public String getBillingDate() { return this.billingDate; } public void setBillingDate(String billingDate) { this.billingDate = billingDate; } public String getInstanceConfig() { return this.instanceConfig; } public void setInstanceConfig(String instanceConfig) { this.instanceConfig = instanceConfig; } public String getInternetIP() { return this.internetIP; } public void setInternetIP(String internetIP) { this.internetIP = internetIP; } public String getItem() { return this.item; } public void setItem(String item) { this.item = item; } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; } public String getInstanceID() { return this.instanceID; } public void setInstanceID(String instanceID) { this.instanceID = instanceID; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public Float getDeductedByCashCoupons() { return this.deductedByCashCoupons; } public void setDeductedByCashCoupons(Float deductedByCashCoupons) { this.deductedByCashCoupons = deductedByCashCoupons; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public String getInstanceSpec() { return this.instanceSpec; } public void setInstanceSpec(String instanceSpec) { this.instanceSpec = instanceSpec; } public Float getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(Float deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public String getBillingItem() { return this.billingItem; } public void setBillingItem(String billingItem) { this.billingItem = billingItem; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public Float getOutstandingAmount() { return this.outstandingAmount; } public void setOutstandingAmount(Float outstandingAmount) { this.outstandingAmount = outstandingAmount; } public String getCostUnit() { return this.costUnit; } public void setCostUnit(String costUnit) { this.costUnit = costUnit; } public String getListPriceUnit() { return this.listPriceUnit; } public void setListPriceUnit(String listPriceUnit) { this.listPriceUnit = listPriceUnit; } public String getResourceGroup() { return this.resourceGroup; } public void setResourceGroup(String resourceGroup) { this.resourceGroup = resourceGroup; } public String getPipCode() { return this.pipCode; } public void setPipCode(String pipCode) { this.pipCode = pipCode; } public String getServicePeriodUnit() { return this.servicePeriodUnit; } public void setServicePeriodUnit(String servicePeriodUnit) { this.servicePeriodUnit = servicePeriodUnit; } public Float getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(Float pretaxAmount) { this.pretaxAmount = pretaxAmount; } public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public Float getAdjustAmount() { return this.adjustAmount; } public void setAdjustAmount(Float adjustAmount) { this.adjustAmount = adjustAmount; } public String getNickName() { return this.nickName; } public void setNickName(String nickName) { this.nickName = nickName; } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; } public String getUsage() { return this.usage; } public void setUsage(String usage) { this.usage = usage; } public String getIntranetIP() { return this.intranetIP; } public void setIntranetIP(String intranetIP) { this.intranetIP = intranetIP; } public String getOwnerID() { return this.ownerID; } public void setOwnerID(String ownerID) { this.ownerID = ownerID; } public Float getDeductedByPrepaidCard() { return this.deductedByPrepaidCard; } public void setDeductedByPrepaidCard(Float deductedByPrepaidCard) { this.deductedByPrepaidCard = deductedByPrepaidCard; } public String getUsageUnit() { return this.usageUnit; } public void setUsageUnit(String usageUnit) { this.usageUnit = usageUnit; } public Float getPaymentAmount() { return this.paymentAmount; } public void setPaymentAmount(Float paymentAmount) { this.paymentAmount = paymentAmount; } public Float getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Float invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public String getDeductedByResourcePackage() { return this.deductedByResourcePackage; } public void setDeductedByResourcePackage(String deductedByResourcePackage) { this.deductedByResourcePackage = deductedByResourcePackage; } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; } public String getServicePeriod() { return this.servicePeriod; } public void setServicePeriod(String servicePeriod) { this.servicePeriod = servicePeriod; } public String getZone() { return this.zone; } public void setZone(String zone) { this.zone = zone; } public String getListPrice() { return this.listPrice; } public void setListPrice(String listPrice) { this.listPrice = listPrice; } public Float getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(Float pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public Float getCashAmount() { return this.cashAmount; } public void setCashAmount(Float cashAmount) { this.cashAmount = cashAmount; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public String getBillingType() { return this.billingType; } public void setBillingType(String billingType) { this.billingType = billingType; } } } @Override public QueryInstanceBillResponse getInstance(UnmarshallerContext context) { return QueryInstanceBillResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryInstanceByTagRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryInstanceByTagRequest extends RpcAcsRequest<QueryInstanceByTagResponse> { private List<String> resourceIds; private String resourceType; private List<Tag> tags; public QueryInstanceByTagRequest() { super("BssOpenApi", "2017-12-14", "QueryInstanceByTag", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<String> getResourceIds() { return this.resourceIds; } public void setResourceIds(List<String> resourceIds) { this.resourceIds = resourceIds; if (resourceIds != null) { for (int i = 0; i < resourceIds.size(); i++) { putQueryParameter("ResourceId." + (i + 1) , resourceIds.get(i)); } } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public List<Tag> getTags() { return this.tags; } public void setTags(List<Tag> tags) { this.tags = tags; if (tags != null) { for (int depth1 = 0; depth1 < tags.size(); depth1++) { putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue()); putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey()); } } } public static class Tag { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<QueryInstanceByTagResponse> getResponseClass() { return QueryInstanceByTagResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryInstanceByTagResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryInstanceByTagResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryInstanceByTagResponse extends AcsResponse { private String code; private String message; private String nextToken; private String requestId; private Boolean success; private List<TagResourceItem> tagResource; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<TagResourceItem> getTagResource() { return this.tagResource; } public void setTagResource(List<TagResourceItem> tagResource) { this.tagResource = tagResource; } public static class TagResourceItem { private String resourceId; private String resourceType; private List<TagKeyValue> tag; public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; } public List<TagKeyValue> getTag() { return this.tag; } public void setTag(List<TagKeyValue> tag) { this.tag = tag; } public static class TagKeyValue { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public QueryInstanceByTagResponse getInstance(UnmarshallerContext context) { return QueryInstanceByTagResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryInstanceGaapCostRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryInstanceGaapCostRequest extends RpcAcsRequest<QueryInstanceGaapCostResponse> { private String productCode; private String subscriptionType; private String billingCycle; private Integer pageNum; private String productType; private Integer pageSize; public QueryInstanceGaapCostRequest() { super("BssOpenApi", "2017-12-14", "QueryInstanceGaapCost", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putQueryParameter("BillingCycle", billingCycle); } } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<QueryInstanceGaapCostResponse> getResponseClass() { return QueryInstanceGaapCostResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryInstanceGaapCostResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryInstanceGaapCostResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryInstanceGaapCostResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNum; private Integer pageSize; private Integer totalCount; private String hostId; private List<Module> modules; public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public String getHostId() { return this.hostId; } public void setHostId(String hostId) { this.hostId = hostId; } public List<Module> getModules() { return this.modules; } public void setModules(List<Module> modules) { this.modules = modules; } public static class Module { private String gaapDeductedByCashCoupons; private String subscriptionType; private String monthGaapPretaxAmount; private String deductedByCoupons; private String subOrderId; private String region; private String orderType; private String monthGaapDeductedByPrepaidCard; private String unallocatedDeductedByCashCoupons; private String pretaxAmountLocal; private String billingCycle; private String payerAccount; private String monthGaapPretaxAmountLocal; private String accountingUnit; private String gaapPretaxAmountLocal; private String unallocatedDeductedByPrepaidCard; private String productType; private String paymentAmount; private String monthGaapPretaxGrossAmount; private String billType; private String payTime; private String pretaxGrossAmount; private String orderId; private String unallocatedPricingDiscount; private String monthGaapDeductedByCashCoupons; private String unallocatedPretaxGrossAmount; private String instanceID; private String tag; private String currency; private String gaapDeductedByCoupons; private String deductedByCashCoupons; private String gaapDeductedByPrepaidCard; private String gaapPaymentAmount; private String unallocatedPretaxAmountLocal; private String monthGaapPricingDiscount; private String pricingDiscount; private String gaapPricingDiscount; private String resourceGroup; private String unallocatedDeductedByCoupons; private String pretaxAmount; private String unallocatedPretaxAmount; private String gaapPretaxGrossAmount; private String unallocatedPaymentAmount; private String paymentCurrency; private String ownerID; private String deductedByPrepaidCard; private String gaapPretaxAmount; private String monthGaapDeductedByCoupons; private String monthGaapPaymentAmount; private String usageEndDate; private String usageStartDate; private String productCode; public String getGaapDeductedByCashCoupons() { return this.gaapDeductedByCashCoupons; } public void setGaapDeductedByCashCoupons(String gaapDeductedByCashCoupons) { this.gaapDeductedByCashCoupons = gaapDeductedByCashCoupons; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public String getMonthGaapPretaxAmount() { return this.monthGaapPretaxAmount; } public void setMonthGaapPretaxAmount(String monthGaapPretaxAmount) { this.monthGaapPretaxAmount = monthGaapPretaxAmount; } public String getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(String deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public String getSubOrderId() { return this.subOrderId; } public void setSubOrderId(String subOrderId) { this.subOrderId = subOrderId; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getOrderType() { return this.orderType; } public void setOrderType(String orderType) { this.orderType = orderType; } public String getMonthGaapDeductedByPrepaidCard() { return this.monthGaapDeductedByPrepaidCard; } public void setMonthGaapDeductedByPrepaidCard(String monthGaapDeductedByPrepaidCard) { this.monthGaapDeductedByPrepaidCard = monthGaapDeductedByPrepaidCard; } public String getUnallocatedDeductedByCashCoupons() { return this.unallocatedDeductedByCashCoupons; } public void setUnallocatedDeductedByCashCoupons(String unallocatedDeductedByCashCoupons) { this.unallocatedDeductedByCashCoupons = unallocatedDeductedByCashCoupons; } public String getPretaxAmountLocal() { return this.pretaxAmountLocal; } public void setPretaxAmountLocal(String pretaxAmountLocal) { this.pretaxAmountLocal = pretaxAmountLocal; } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; } public String getPayerAccount() { return this.payerAccount; } public void setPayerAccount(String payerAccount) { this.payerAccount = payerAccount; } public String getMonthGaapPretaxAmountLocal() { return this.monthGaapPretaxAmountLocal; } public void setMonthGaapPretaxAmountLocal(String monthGaapPretaxAmountLocal) { this.monthGaapPretaxAmountLocal = monthGaapPretaxAmountLocal; } public String getAccountingUnit() { return this.accountingUnit; } public void setAccountingUnit(String accountingUnit) { this.accountingUnit = accountingUnit; } public String getGaapPretaxAmountLocal() { return this.gaapPretaxAmountLocal; } public void setGaapPretaxAmountLocal(String gaapPretaxAmountLocal) { this.gaapPretaxAmountLocal = gaapPretaxAmountLocal; } public String getUnallocatedDeductedByPrepaidCard() { return this.unallocatedDeductedByPrepaidCard; } public void setUnallocatedDeductedByPrepaidCard(String unallocatedDeductedByPrepaidCard) { this.unallocatedDeductedByPrepaidCard = unallocatedDeductedByPrepaidCard; } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; } public String getPaymentAmount() { return this.paymentAmount; } public void setPaymentAmount(String paymentAmount) { this.paymentAmount = paymentAmount; } public String getMonthGaapPretaxGrossAmount() { return this.monthGaapPretaxGrossAmount; } public void setMonthGaapPretaxGrossAmount(String monthGaapPretaxGrossAmount) { this.monthGaapPretaxGrossAmount = monthGaapPretaxGrossAmount; } public String getBillType() { return this.billType; } public void setBillType(String billType) { this.billType = billType; } public String getPayTime() { return this.payTime; } public void setPayTime(String payTime) { this.payTime = payTime; } public String getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(String pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public String getOrderId() { return this.orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } public String getUnallocatedPricingDiscount() { return this.unallocatedPricingDiscount; } public void setUnallocatedPricingDiscount(String unallocatedPricingDiscount) { this.unallocatedPricingDiscount = unallocatedPricingDiscount; } public String getMonthGaapDeductedByCashCoupons() { return this.monthGaapDeductedByCashCoupons; } public void setMonthGaapDeductedByCashCoupons(String monthGaapDeductedByCashCoupons) { this.monthGaapDeductedByCashCoupons = monthGaapDeductedByCashCoupons; } public String getUnallocatedPretaxGrossAmount() { return this.unallocatedPretaxGrossAmount; } public void setUnallocatedPretaxGrossAmount(String unallocatedPretaxGrossAmount) { this.unallocatedPretaxGrossAmount = unallocatedPretaxGrossAmount; } public String getInstanceID() { return this.instanceID; } public void setInstanceID(String instanceID) { this.instanceID = instanceID; } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public String getGaapDeductedByCoupons() { return this.gaapDeductedByCoupons; } public void setGaapDeductedByCoupons(String gaapDeductedByCoupons) { this.gaapDeductedByCoupons = gaapDeductedByCoupons; } public String getDeductedByCashCoupons() { return this.deductedByCashCoupons; } public void setDeductedByCashCoupons(String deductedByCashCoupons) { this.deductedByCashCoupons = deductedByCashCoupons; } public String getGaapDeductedByPrepaidCard() { return this.gaapDeductedByPrepaidCard; } public void setGaapDeductedByPrepaidCard(String gaapDeductedByPrepaidCard) { this.gaapDeductedByPrepaidCard = gaapDeductedByPrepaidCard; } public String getGaapPaymentAmount() { return this.gaapPaymentAmount; } public void setGaapPaymentAmount(String gaapPaymentAmount) { this.gaapPaymentAmount = gaapPaymentAmount; } public String getUnallocatedPretaxAmountLocal() { return this.unallocatedPretaxAmountLocal; } public void setUnallocatedPretaxAmountLocal(String unallocatedPretaxAmountLocal) { this.unallocatedPretaxAmountLocal = unallocatedPretaxAmountLocal; } public String getMonthGaapPricingDiscount() { return this.monthGaapPricingDiscount; } public void setMonthGaapPricingDiscount(String monthGaapPricingDiscount) { this.monthGaapPricingDiscount = monthGaapPricingDiscount; } public String getPricingDiscount() { return this.pricingDiscount; } public void setPricingDiscount(String pricingDiscount) { this.pricingDiscount = pricingDiscount; } public String getGaapPricingDiscount() { return this.gaapPricingDiscount; } public void setGaapPricingDiscount(String gaapPricingDiscount) { this.gaapPricingDiscount = gaapPricingDiscount; } public String getResourceGroup() { return this.resourceGroup; } public void setResourceGroup(String resourceGroup) { this.resourceGroup = resourceGroup; } public String getUnallocatedDeductedByCoupons() { return this.unallocatedDeductedByCoupons; } public void setUnallocatedDeductedByCoupons(String unallocatedDeductedByCoupons) { this.unallocatedDeductedByCoupons = unallocatedDeductedByCoupons; } public String getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(String pretaxAmount) { this.pretaxAmount = pretaxAmount; } public String getUnallocatedPretaxAmount() { return this.unallocatedPretaxAmount; } public void setUnallocatedPretaxAmount(String unallocatedPretaxAmount) { this.unallocatedPretaxAmount = unallocatedPretaxAmount; } public String getGaapPretaxGrossAmount() { return this.gaapPretaxGrossAmount; } public void setGaapPretaxGrossAmount(String gaapPretaxGrossAmount) { this.gaapPretaxGrossAmount = gaapPretaxGrossAmount; } public String getUnallocatedPaymentAmount() { return this.unallocatedPaymentAmount; } public void setUnallocatedPaymentAmount(String unallocatedPaymentAmount) { this.unallocatedPaymentAmount = unallocatedPaymentAmount; } public String getPaymentCurrency() { return this.paymentCurrency; } public void setPaymentCurrency(String paymentCurrency) { this.paymentCurrency = paymentCurrency; } public String getOwnerID() { return this.ownerID; } public void setOwnerID(String ownerID) { this.ownerID = ownerID; } public String getDeductedByPrepaidCard() { return this.deductedByPrepaidCard; } public void setDeductedByPrepaidCard(String deductedByPrepaidCard) { this.deductedByPrepaidCard = deductedByPrepaidCard; } public String getGaapPretaxAmount() { return this.gaapPretaxAmount; } public void setGaapPretaxAmount(String gaapPretaxAmount) { this.gaapPretaxAmount = gaapPretaxAmount; } public String getMonthGaapDeductedByCoupons() { return this.monthGaapDeductedByCoupons; } public void setMonthGaapDeductedByCoupons(String monthGaapDeductedByCoupons) { this.monthGaapDeductedByCoupons = monthGaapDeductedByCoupons; } public String getMonthGaapPaymentAmount() { return this.monthGaapPaymentAmount; } public void setMonthGaapPaymentAmount(String monthGaapPaymentAmount) { this.monthGaapPaymentAmount = monthGaapPaymentAmount; } public String getUsageEndDate() { return this.usageEndDate; } public void setUsageEndDate(String usageEndDate) { this.usageEndDate = usageEndDate; } public String getUsageStartDate() { return this.usageStartDate; } public void setUsageStartDate(String usageStartDate) { this.usageStartDate = usageStartDate; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } } } @Override public QueryInstanceGaapCostResponse getInstance(UnmarshallerContext context) { return QueryInstanceGaapCostResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryInvoicingCustomerListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryInvoicingCustomerListRequest extends RpcAcsRequest<QueryInvoicingCustomerListResponse> { private Long ownerId; public QueryInvoicingCustomerListRequest() { super("BssOpenApi", "2017-12-14", "QueryInvoicingCustomerList", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } @Override public Class<QueryInvoicingCustomerListResponse> getResponseClass() { return QueryInvoicingCustomerListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryInvoicingCustomerListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryInvoicingCustomerListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryInvoicingCustomerListResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<CustomerInvoice> customerInvoiceList; public List<CustomerInvoice> getCustomerInvoiceList() { return this.customerInvoiceList; } public void setCustomerInvoiceList(List<CustomerInvoice> customerInvoiceList) { this.customerInvoiceList = customerInvoiceList; } public static class CustomerInvoice { private Long type; private Long status; private Long adjustType; private String bank; private Long startCycle; private String titleChangeInstructions; private Long userId; private String operatingLicenseAddress; private String invoiceTitle; private String userNick; private String operatingLicensePhone; private Long endCycle; private String defaultRemark; private String taxationLicense; private String registerNo; private String gmtCreate; private Long taxpayerType; private Long customerType; private Long issueType; private Long id; private String bankNo; public Long getType() { return this.type; } public void setType(Long type) { this.type = type; } public Long getStatus() { return this.status; } public void setStatus(Long status) { this.status = status; } public Long getAdjustType() { return this.adjustType; } public void setAdjustType(Long adjustType) { this.adjustType = adjustType; } public String getBank() { return this.bank; } public void setBank(String bank) { this.bank = bank; } public Long getStartCycle() { return this.startCycle; } public void setStartCycle(Long startCycle) { this.startCycle = startCycle; } public String getTitleChangeInstructions() { return this.titleChangeInstructions; } public void setTitleChangeInstructions(String titleChangeInstructions) { this.titleChangeInstructions = titleChangeInstructions; } public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; } public String getOperatingLicenseAddress() { return this.operatingLicenseAddress; } public void setOperatingLicenseAddress(String operatingLicenseAddress) { this.operatingLicenseAddress = operatingLicenseAddress; } public String getInvoiceTitle() { return this.invoiceTitle; } public void setInvoiceTitle(String invoiceTitle) { this.invoiceTitle = invoiceTitle; } public String getUserNick() { return this.userNick; } public void setUserNick(String userNick) { this.userNick = userNick; } public String getOperatingLicensePhone() { return this.operatingLicensePhone; } public void setOperatingLicensePhone(String operatingLicensePhone) { this.operatingLicensePhone = operatingLicensePhone; } public Long getEndCycle() { return this.endCycle; } public void setEndCycle(Long endCycle) { this.endCycle = endCycle; } public String getDefaultRemark() { return this.defaultRemark; } public void setDefaultRemark(String defaultRemark) { this.defaultRemark = defaultRemark; } public String getTaxationLicense() { return this.taxationLicense; } public void setTaxationLicense(String taxationLicense) { this.taxationLicense = taxationLicense; } public String getRegisterNo() { return this.registerNo; } public void setRegisterNo(String registerNo) { this.registerNo = registerNo; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public Long getTaxpayerType() { return this.taxpayerType; } public void setTaxpayerType(Long taxpayerType) { this.taxpayerType = taxpayerType; } public Long getCustomerType() { return this.customerType; } public void setCustomerType(Long customerType) { this.customerType = customerType; } public Long getIssueType() { return this.issueType; } public void setIssueType(Long issueType) { this.issueType = issueType; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getBankNo() { return this.bankNo; } public void setBankNo(String bankNo) { this.bankNo = bankNo; } } } @Override public QueryInvoicingCustomerListResponse getInstance(UnmarshallerContext context) { return QueryInvoicingCustomerListResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryOrdersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryOrdersRequest extends RpcAcsRequest<QueryOrdersResponse> { private String productCode; private String subscriptionType; private Integer pageNum; private Long ownerId; private String createTimeEnd; private String productType; private Integer pageSize; private String paymentStatus; private String createTimeStart; private String orderType; public QueryOrdersRequest() { super("BssOpenApi", "2017-12-14", "QueryOrders", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getCreateTimeEnd() { return this.createTimeEnd; } public void setCreateTimeEnd(String createTimeEnd) { this.createTimeEnd = createTimeEnd; if(createTimeEnd != null){ putQueryParameter("CreateTimeEnd", createTimeEnd); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getPaymentStatus() { return this.paymentStatus; } public void setPaymentStatus(String paymentStatus) { this.paymentStatus = paymentStatus; if(paymentStatus != null){ putQueryParameter("PaymentStatus", paymentStatus); } } public String getCreateTimeStart() { return this.createTimeStart; } public void setCreateTimeStart(String createTimeStart) { this.createTimeStart = createTimeStart; if(createTimeStart != null){ putQueryParameter("CreateTimeStart", createTimeStart); } } public String getOrderType() { return this.orderType; } public void setOrderType(String orderType) { this.orderType = orderType; if(orderType != null){ putQueryParameter("OrderType", orderType); } } @Override public Class<QueryOrdersResponse> getResponseClass() { return QueryOrdersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryOrdersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryOrdersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryOrdersResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String hostName; private Integer pageNum; private Integer pageSize; private Integer totalCount; private List<Order> orderList; public String getHostName() { return this.hostName; } public void setHostName(String hostName) { this.hostName = hostName; } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<Order> getOrderList() { return this.orderList; } public void setOrderList(List<Order> orderList) { this.orderList = orderList; } public static class Order { private String pretaxAmount; private String commodityCode; private String relatedOrderId; private String createTime; private String currency; private String subscriptionType; private String paymentCurrency; private String productType; private String afterTaxAmount; private String paymentTime; private String pretaxGrossAmount; private String orderType; private String paymentStatus; private String orderId; private String tax; private String pretaxAmountLocal; private String productCode; public String getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(String pretaxAmount) { this.pretaxAmount = pretaxAmount; } public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; } public String getRelatedOrderId() { return this.relatedOrderId; } public void setRelatedOrderId(String relatedOrderId) { this.relatedOrderId = relatedOrderId; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public String getPaymentCurrency() { return this.paymentCurrency; } public void setPaymentCurrency(String paymentCurrency) { this.paymentCurrency = paymentCurrency; } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; } public String getAfterTaxAmount() { return this.afterTaxAmount; } public void setAfterTaxAmount(String afterTaxAmount) { this.afterTaxAmount = afterTaxAmount; } public String getPaymentTime() { return this.paymentTime; } public void setPaymentTime(String paymentTime) { this.paymentTime = paymentTime; } public String getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(String pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public String getOrderType() { return this.orderType; } public void setOrderType(String orderType) { this.orderType = orderType; } public String getPaymentStatus() { return this.paymentStatus; } public void setPaymentStatus(String paymentStatus) { this.paymentStatus = paymentStatus; } public String getOrderId() { return this.orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } public String getTax() { return this.tax; } public void setTax(String tax) { this.tax = tax; } public String getPretaxAmountLocal() { return this.pretaxAmountLocal; } public void setPretaxAmountLocal(String pretaxAmountLocal) { this.pretaxAmountLocal = pretaxAmountLocal; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } } } @Override public QueryOrdersResponse getInstance(UnmarshallerContext context) { return QueryOrdersResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryPermissionListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryPermissionListRequest extends RpcAcsRequest<QueryPermissionListResponse> { private Long relationId; public QueryPermissionListRequest() { super("BssOpenApi", "2017-12-14", "QueryPermissionList", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getRelationId() { return this.relationId; } public void setRelationId(Long relationId) { this.relationId = relationId; if(relationId != null){ putQueryParameter("RelationId", relationId.toString()); } } @Override public Class<QueryPermissionListResponse> getResponseClass() { return QueryPermissionListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryPermissionListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryPermissionListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryPermissionListResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String endTime; private String relationType; private String startTime; private String state; private Long masterId; private Long memberId; private String setupTime; private List<PermissionListItem> permissionList; public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public String getRelationType() { return this.relationType; } public void setRelationType(String relationType) { this.relationType = relationType; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public Long getMasterId() { return this.masterId; } public void setMasterId(Long masterId) { this.masterId = masterId; } public Long getMemberId() { return this.memberId; } public void setMemberId(Long memberId) { this.memberId = memberId; } public String getSetupTime() { return this.setupTime; } public void setSetupTime(String setupTime) { this.setupTime = setupTime; } public List<PermissionListItem> getPermissionList() { return this.permissionList; } public void setPermissionList(List<PermissionListItem> permissionList) { this.permissionList = permissionList; } public static class PermissionListItem { private String endTime; private String startTime; private String permissionCode; private String permissionName; public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getPermissionCode() { return this.permissionCode; } public void setPermissionCode(String permissionCode) { this.permissionCode = permissionCode; } public String getPermissionName() { return this.permissionName; } public void setPermissionName(String permissionName) { this.permissionName = permissionName; } } } @Override public QueryPermissionListResponse getInstance(UnmarshallerContext context) { return QueryPermissionListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryPrepaidCardsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryPrepaidCardsRequest extends RpcAcsRequest<QueryPrepaidCardsResponse> { private String expiryTimeEnd; private String expiryTimeStart; private Boolean effectiveOrNot; public QueryPrepaidCardsRequest() { super("BssOpenApi", "2017-12-14", "QueryPrepaidCards", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getExpiryTimeEnd() { return this.expiryTimeEnd; } public void setExpiryTimeEnd(String expiryTimeEnd) { this.expiryTimeEnd = expiryTimeEnd; if(expiryTimeEnd != null){ putQueryParameter("ExpiryTimeEnd", expiryTimeEnd); } } public String getExpiryTimeStart() { return this.expiryTimeStart; } public void setExpiryTimeStart(String expiryTimeStart) { this.expiryTimeStart = expiryTimeStart; if(expiryTimeStart != null){ putQueryParameter("ExpiryTimeStart", expiryTimeStart); } } public Boolean getEffectiveOrNot() { return this.effectiveOrNot; } public void setEffectiveOrNot(Boolean effectiveOrNot) { this.effectiveOrNot = effectiveOrNot; if(effectiveOrNot != null){ putQueryParameter("EffectiveOrNot", effectiveOrNot.toString()); } } @Override public Class<QueryPrepaidCardsResponse> getResponseClass() { return QueryPrepaidCardsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryPrepaidCardsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryPrepaidCardsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryPrepaidCardsResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private List<PrepaidCard> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<PrepaidCard> getData() { return this.data; } public void setData(List<PrepaidCard> data) { this.data = data; } public static class PrepaidCard { private String status; private String expiryTime; private String grantedTime; private String nominalValue; private String effectiveTime; private String prepaidCardNo; private String applicableScenarios; private Long prepaidCardId; private String applicableProducts; private String balance; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getExpiryTime() { return this.expiryTime; } public void setExpiryTime(String expiryTime) { this.expiryTime = expiryTime; } public String getGrantedTime() { return this.grantedTime; } public void setGrantedTime(String grantedTime) { this.grantedTime = grantedTime; } public String getNominalValue() { return this.nominalValue; } public void setNominalValue(String nominalValue) { this.nominalValue = nominalValue; } public String getEffectiveTime() { return this.effectiveTime; } public void setEffectiveTime(String effectiveTime) { this.effectiveTime = effectiveTime; } public String getPrepaidCardNo() { return this.prepaidCardNo; } public void setPrepaidCardNo(String prepaidCardNo) { this.prepaidCardNo = prepaidCardNo; } public String getApplicableScenarios() { return this.applicableScenarios; } public void setApplicableScenarios(String applicableScenarios) { this.applicableScenarios = applicableScenarios; } public Long getPrepaidCardId() { return this.prepaidCardId; } public void setPrepaidCardId(Long prepaidCardId) { this.prepaidCardId = prepaidCardId; } public String getApplicableProducts() { return this.applicableProducts; } public void setApplicableProducts(String applicableProducts) { this.applicableProducts = applicableProducts; } public String getBalance() { return this.balance; } public void setBalance(String balance) { this.balance = balance; } } @Override public QueryPrepaidCardsResponse getInstance(UnmarshallerContext context) { return QueryPrepaidCardsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryPriceEntityListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryPriceEntityListRequest extends RpcAcsRequest<QueryPriceEntityListResponse> { private String commodityCode; private String lang; public QueryPriceEntityListRequest() { super("BssOpenApi", "2017-12-14", "QueryPriceEntityList", "bssopenapi"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; if(commodityCode != null){ putQueryParameter("CommodityCode", commodityCode); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<QueryPriceEntityListResponse> getResponseClass() { return QueryPriceEntityListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryPriceEntityListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryPriceEntityListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryPriceEntityListResponse extends AcsResponse { private String requestId; private String code; private String message; private Boolean success; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<PriceEntityInfoDTO> priceEntityInfoList; public List<PriceEntityInfoDTO> getPriceEntityInfoList() { return this.priceEntityInfoList; } public void setPriceEntityInfoList(List<PriceEntityInfoDTO> priceEntityInfoList) { this.priceEntityInfoList = priceEntityInfoList; } public static class PriceEntityInfoDTO { private String priceEntityCode; private String priceEntityName; private List<PriceFactorDTO> priceFactorList; public String getPriceEntityCode() { return this.priceEntityCode; } public void setPriceEntityCode(String priceEntityCode) { this.priceEntityCode = priceEntityCode; } public String getPriceEntityName() { return this.priceEntityName; } public void setPriceEntityName(String priceEntityName) { this.priceEntityName = priceEntityName; } public List<PriceFactorDTO> getPriceFactorList() { return this.priceFactorList; } public void setPriceFactorList(List<PriceFactorDTO> priceFactorList) { this.priceFactorList = priceFactorList; } public static class PriceFactorDTO { private String priceFactorCode; private String priceFactorName; private List<String> priceFactorValueList; public String getPriceFactorCode() { return this.priceFactorCode; } public void setPriceFactorCode(String priceFactorCode) { this.priceFactorCode = priceFactorCode; } public String getPriceFactorName() { return this.priceFactorName; } public void setPriceFactorName(String priceFactorName) { this.priceFactorName = priceFactorName; } public List<String> getPriceFactorValueList() { return this.priceFactorValueList; } public void setPriceFactorValueList(List<String> priceFactorValueList) { this.priceFactorValueList = priceFactorValueList; } } } } @Override public QueryPriceEntityListResponse getInstance(UnmarshallerContext context) { return QueryPriceEntityListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryProductListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryProductListRequest extends RpcAcsRequest<QueryProductListResponse> { private Integer pageNum; private Boolean queryTotalCount; private Integer pageSize; public QueryProductListRequest() { super("BssOpenApi", "2017-12-14", "QueryProductList", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public Boolean getQueryTotalCount() { return this.queryTotalCount; } public void setQueryTotalCount(Boolean queryTotalCount) { this.queryTotalCount = queryTotalCount; if(queryTotalCount != null){ putQueryParameter("QueryTotalCount", queryTotalCount.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<QueryProductListResponse> getResponseClass() { return QueryProductListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryProductListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryProductListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryProductListResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNum; private Integer pageSize; private Integer totalCount; private List<Product> productList; public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<Product> getProductList() { return this.productList; } public void setProductList(List<Product> productList) { this.productList = productList; } public static class Product { private String productName; private String productType; private String subscriptionType; private String productCode; public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } } } @Override public QueryProductListResponse getInstance(UnmarshallerContext context) { return QueryProductListResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryRIUtilizationDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryRIUtilizationDetailRequest extends RpcAcsRequest<QueryRIUtilizationDetailResponse> { private String deductedInstanceId; private String instanceSpec; private String endTime; private String rIInstanceId; private String startTime; private Integer pageNum; private Integer pageSize; private String rICommodityCode; public QueryRIUtilizationDetailRequest() { super("BssOpenApi", "2017-12-14", "QueryRIUtilizationDetail", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDeductedInstanceId() { return this.deductedInstanceId; } public void setDeductedInstanceId(String deductedInstanceId) { this.deductedInstanceId = deductedInstanceId; if(deductedInstanceId != null){ putQueryParameter("DeductedInstanceId", deductedInstanceId); } } public String getInstanceSpec() { return this.instanceSpec; } public void setInstanceSpec(String instanceSpec) { this.instanceSpec = instanceSpec; if(instanceSpec != null){ putQueryParameter("InstanceSpec", instanceSpec); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime); } } public String getRIInstanceId() { return this.rIInstanceId; } public void setRIInstanceId(String rIInstanceId) { this.rIInstanceId = rIInstanceId; if(rIInstanceId != null){ putQueryParameter("RIInstanceId", rIInstanceId); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime); } } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getRICommodityCode() { return this.rICommodityCode; } public void setRICommodityCode(String rICommodityCode) { this.rICommodityCode = rICommodityCode; if(rICommodityCode != null){ putQueryParameter("RICommodityCode", rICommodityCode); } } @Override public Class<QueryRIUtilizationDetailResponse> getResponseClass() { return QueryRIUtilizationDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryRIUtilizationDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryRIUtilizationDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryRIUtilizationDetailResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long pageNum; private Long pageSize; private Long totalCount; private List<DetailListItem> detailList; public Long getPageNum() { return this.pageNum; } public void setPageNum(Long pageNum) { this.pageNum = pageNum; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<DetailListItem> getDetailList() { return this.detailList; } public void setDetailList(List<DetailListItem> detailList) { this.detailList = detailList; } public static class DetailListItem { private String deductedCommodityCode; private String deductedProductDetail; private String deductedInstanceId; private Float deductFactorTotal; private Float deductQuantity; private String deductHours; private String deductDate; private String rIInstanceId; private String instanceSpec; public String getDeductedCommodityCode() { return this.deductedCommodityCode; } public void setDeductedCommodityCode(String deductedCommodityCode) { this.deductedCommodityCode = deductedCommodityCode; } public String getDeductedProductDetail() { return this.deductedProductDetail; } public void setDeductedProductDetail(String deductedProductDetail) { this.deductedProductDetail = deductedProductDetail; } public String getDeductedInstanceId() { return this.deductedInstanceId; } public void setDeductedInstanceId(String deductedInstanceId) { this.deductedInstanceId = deductedInstanceId; } public Float getDeductFactorTotal() { return this.deductFactorTotal; } public void setDeductFactorTotal(Float deductFactorTotal) { this.deductFactorTotal = deductFactorTotal; } public Float getDeductQuantity() { return this.deductQuantity; } public void setDeductQuantity(Float deductQuantity) { this.deductQuantity = deductQuantity; } public String getDeductHours() { return this.deductHours; } public void setDeductHours(String deductHours) { this.deductHours = deductHours; } public String getDeductDate() { return this.deductDate; } public void setDeductDate(String deductDate) { this.deductDate = deductDate; } public String getRIInstanceId() { return this.rIInstanceId; } public void setRIInstanceId(String rIInstanceId) { this.rIInstanceId = rIInstanceId; } public String getInstanceSpec() { return this.instanceSpec; } public void setInstanceSpec(String instanceSpec) { this.instanceSpec = instanceSpec; } } } @Override public QueryRIUtilizationDetailResponse getInstance(UnmarshallerContext context) { return QueryRIUtilizationDetailResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryRedeemRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryRedeemRequest extends RpcAcsRequest<QueryRedeemResponse> { private String expiryTimeEnd; private String expiryTimeStart; private Integer pageNum; private Boolean effectiveOrNot; private Integer pageSize; public QueryRedeemRequest() { super("BssOpenApi", "2017-12-14", "QueryRedeem", "bssopenapi"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getExpiryTimeEnd() { return this.expiryTimeEnd; } public void setExpiryTimeEnd(String expiryTimeEnd) { this.expiryTimeEnd = expiryTimeEnd; if(expiryTimeEnd != null){ putQueryParameter("ExpiryTimeEnd", expiryTimeEnd); } } public String getExpiryTimeStart() { return this.expiryTimeStart; } public void setExpiryTimeStart(String expiryTimeStart) { this.expiryTimeStart = expiryTimeStart; if(expiryTimeStart != null){ putQueryParameter("ExpiryTimeStart", expiryTimeStart); } } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public Boolean getEffectiveOrNot() { return this.effectiveOrNot; } public void setEffectiveOrNot(Boolean effectiveOrNot) { this.effectiveOrNot = effectiveOrNot; if(effectiveOrNot != null){ putQueryParameter("EffectiveOrNot", effectiveOrNot.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<QueryRedeemResponse> getResponseClass() { return QueryRedeemResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryRedeemResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryRedeemResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryRedeemResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long pageNum; private Long pageSize; private Long totalCount; private List<RedeemItem> redeem; public Long getPageNum() { return this.pageNum; } public void setPageNum(Long pageNum) { this.pageNum = pageNum; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<RedeemItem> getRedeem() { return this.redeem; } public void setRedeem(List<RedeemItem> redeem) { this.redeem = redeem; } public static class RedeemItem { private String expiryTime; private String grantedTime; private String status; private String specification; private String nominalValue; private String effectiveTime; private String redeemId; private String redeemNo; private String applicableProducts; private String balance; public String getExpiryTime() { return this.expiryTime; } public void setExpiryTime(String expiryTime) { this.expiryTime = expiryTime; } public String getGrantedTime() { return this.grantedTime; } public void setGrantedTime(String grantedTime) { this.grantedTime = grantedTime; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getSpecification() { return this.specification; } public void setSpecification(String specification) { this.specification = specification; } public String getNominalValue() { return this.nominalValue; } public void setNominalValue(String nominalValue) { this.nominalValue = nominalValue; } public String getEffectiveTime() { return this.effectiveTime; } public void setEffectiveTime(String effectiveTime) { this.effectiveTime = effectiveTime; } public String getRedeemId() { return this.redeemId; } public void setRedeemId(String redeemId) { this.redeemId = redeemId; } public String getRedeemNo() { return this.redeemNo; } public void setRedeemNo(String redeemNo) { this.redeemNo = redeemNo; } public String getApplicableProducts() { return this.applicableProducts; } public void setApplicableProducts(String applicableProducts) { this.applicableProducts = applicableProducts; } public String getBalance() { return this.balance; } public void setBalance(String balance) { this.balance = balance; } } } @Override public QueryRedeemResponse getInstance(UnmarshallerContext context) { return QueryRedeemResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryRelationListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryRelationListRequest extends RpcAcsRequest<QueryRelationListResponse> { private List<String> statusLists; private Integer pageNum; private Long userId; private Integer pageSize; public QueryRelationListRequest() { super("BssOpenApi", "2017-12-14", "QueryRelationList", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<String> getStatusLists() { return this.statusLists; } public void setStatusLists(List<String> statusLists) { this.statusLists = statusLists; if (statusLists != null) { for (int i = 0; i < statusLists.size(); i++) { putQueryParameter("StatusList." + (i + 1) , statusLists.get(i)); } } } public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; if(userId != null){ putQueryParameter("UserId", userId.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<QueryRelationListResponse> getResponseClass() { return QueryRelationListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryRelationListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryRelationListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryRelationListResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNum; private Integer pageSize; private Integer totalCount; private List<FinancialRelationInfoListItem> financialRelationInfoList; public Integer getPageNum() { return this.pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<FinancialRelationInfoListItem> getFinancialRelationInfoList() { return this.financialRelationInfoList; } public void setFinancialRelationInfoList(List<FinancialRelationInfoListItem> financialRelationInfoList) { this.financialRelationInfoList = financialRelationInfoList; } public static class FinancialRelationInfoListItem { private String endTime; private String relationType; private String accountNickName; private String startTime; private String state; private Long accountId; private String setupTime; private String accountType; private String accountName; private Long relationId; public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public String getRelationType() { return this.relationType; } public void setRelationType(String relationType) { this.relationType = relationType; } public String getAccountNickName() { return this.accountNickName; } public void setAccountNickName(String accountNickName) { this.accountNickName = accountNickName; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getSetupTime() { return this.setupTime; } public void setSetupTime(String setupTime) { this.setupTime = setupTime; } public String getAccountType() { return this.accountType; } public void setAccountType(String accountType) { this.accountType = accountType; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public Long getRelationId() { return this.relationId; } public void setRelationId(Long relationId) { this.relationId = relationId; } } } @Override public QueryRelationListResponse getInstance(UnmarshallerContext context) { return QueryRelationListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryResellerAvailableQuotaRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryResellerAvailableQuotaRequest extends RpcAcsRequest<QueryResellerAvailableQuotaResponse> { private String itemCodes; private Long ownerId; public QueryResellerAvailableQuotaRequest() { super("BssOpenApi", "2017-12-14", "QueryResellerAvailableQuota", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getItemCodes() { return this.itemCodes; } public void setItemCodes(String itemCodes) { this.itemCodes = itemCodes; if(itemCodes != null){ putQueryParameter("ItemCodes", itemCodes); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } @Override public Class<QueryResellerAvailableQuotaResponse> getResponseClass() { return QueryResellerAvailableQuotaResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryResellerAvailableQuotaResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.QueryResellerAvailableQuotaResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryResellerAvailableQuotaResponse extends AcsResponse { private String code; private String message; private String data; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public QueryResellerAvailableQuotaResponse getInstance(UnmarshallerContext context) { return QueryResellerAvailableQuotaResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/QueryResellerUserAlarmThresholdRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class QueryResellerUserAlarmThresholdRequest extends RpcAcsRequest<QueryResellerUserAlarmThresholdResponse> { private String alarmType; private Long ownerId; public QueryResellerUserAlarmThresholdRequest() { super("BssOpenApi", "2017-12-14", "QueryResellerUserAlarmThreshold", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAlarmType() { return this.alarmType; } public void setAlarmType(String alarmType) { this.alarmType = alarmType; if(alarmType != null){ putQueryParameter("AlarmType", alarmType); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } @Override public Class<QueryResellerUserAlarmThresholdResponse> getResponseClass() { return QueryResellerUserAlarmThresholdResponse.class; } }