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

com.softlayer.api.service.brand.Attribute Maven / Gradle / Ivy

The newest version!
package com.softlayer.api.service.brand;

import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Brand;
import com.softlayer.api.service.Entity;

/**
 * @see SoftLayer_Brand_Attribute
 */
@ApiType("SoftLayer_Brand_Attribute")
public class Attribute extends Entity {

    @ApiProperty
    protected Brand brand;

    public Brand getBrand() {
        return brand;
    }

    public void setBrand(Brand brand) {
        this.brand = brand;
    }

    public static class Mask extends com.softlayer.api.service.Entity.Mask {

        public com.softlayer.api.service.Brand.Mask brand() {
            return withSubMask("brand", com.softlayer.api.service.Brand.Mask.class);
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy