com.softlayer.api.service.brand.Attribute 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
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);
}
}
}