![JAR search and dependency download from the Maven repository](/logo.png)
com.softlayer.api.service.billing.item.priv.cloud.Zone Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
package com.softlayer.api.service.billing.item.priv.cloud;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.billing.Item;
import com.softlayer.api.service.resource.Group;
/**
* The SoftLayer_Billing_Item_Private_Cloud_Zone data type contains general information relating to a single SoftLayer billing item for a resource group zone.
*
* @see SoftLayer_Billing_Item_Private_Cloud_Zone
*/
@ApiType("SoftLayer_Billing_Item_Private_Cloud_Zone")
public class Zone extends Item {
/**
* The resource for a resource group billing item.
*/
@ApiProperty
protected Group resource;
public Group getResource() {
return resource;
}
public void setResource(Group resource) {
this.resource = resource;
}
public static class Mask extends com.softlayer.api.service.billing.Item.Mask {
public com.softlayer.api.service.resource.Group.Mask resource() {
return withSubMask("resource", com.softlayer.api.service.resource.Group.Mask.class);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy