com.softlayer.api.service.billing.item.software.License 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.software;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.billing.Item;
import com.softlayer.api.service.software.AccountLicense;
/**
* The SoftLayer_Billing_Item_Software_License data type contains general information relating to a single SoftLayer billing item for a software license.
*
* @see SoftLayer_Billing_Item_Software_License
*/
@ApiType("SoftLayer_Billing_Item_Software_License")
public class License extends Item {
/**
* The resource for a software license billing item.
*/
@ApiProperty
protected AccountLicense resource;
public AccountLicense getResource() {
return resource;
}
public void setResource(AccountLicense resource) {
this.resource = resource;
}
public static class Mask extends com.softlayer.api.service.billing.Item.Mask {
public com.softlayer.api.service.software.AccountLicense.Mask resource() {
return withSubMask("resource", com.softlayer.api.service.software.AccountLicense.Mask.class);
}
}
}