com.softlayer.api.service.billing.item.network.Vlan 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
The newest version!
package com.softlayer.api.service.billing.item.network;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.billing.Item;
/**
* The SoftLayer_Billing_Item_Network_Vlan data type contains general information relating to a single SoftLayer billing item whose item category code is one of the following:
* * network_vlan
*
*
* These item categories denote that the billing item has network vlan information attached.
*
* @see SoftLayer_Billing_Item_Network_Vlan
*/
@ApiType("SoftLayer_Billing_Item_Network_Vlan")
public class Vlan extends Item {
/**
* The network vlan resource for this billing item.
*/
@ApiProperty
protected com.softlayer.api.service.network.Vlan resource;
public com.softlayer.api.service.network.Vlan getResource() {
return resource;
}
public void setResource(com.softlayer.api.service.network.Vlan resource) {
this.resource = resource;
}
public static class Mask extends com.softlayer.api.service.billing.Item.Mask {
public com.softlayer.api.service.network.Vlan.Mask resource() {
return withSubMask("resource", com.softlayer.api.service.network.Vlan.Mask.class);
}
}
}