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

com.softlayer.api.service.billing.item.software.License Maven / Gradle / Ivy

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

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy