All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softlayer.api.service.billing.item.network.Vlan Maven / Gradle / Ivy

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); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy