Class SetAssetAttributesRequest
- Object
-
- SetAssetAttributesRequest
-
- All Implemented Interfaces:
Serializable
public class SetAssetAttributesRequest extends Object implements Serializable
The properties of the asset attributes to be set.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SetAssetAttributesRequest.Builder
-
Constructor Summary
Constructors Constructor Description SetAssetAttributesRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static SetAssetAttributesRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
@NotNull UUID
getAssetId()
Required. The ID of the asset this attribute should belong to.@NotNull UUID
getTypeId()
Required. The ID of the attribute type for the new attribute.@NotNull List<Object>
getValues()
Required. The values for the new attribute.int
hashCode()
void
setAssetId(@NotNull UUID assetId)
Required. The ID of the asset this attribute should belong to.void
setTypeId(@NotNull UUID typeId)
Required. The ID of the attribute type for the new attribute.void
setValue(Object value)
Deprecated.This method will removed in the next major release.void
setValues(@NotNull List<Object> values)
Required. The values for the new attribute.String
toString()
-
-
-
Method Detail
-
setValue
@Deprecated public void setValue(Object value)
Deprecated.This method will removed in the next major release. Please usesetValues(List)
-
builder
public static SetAssetAttributesRequest.Builder builder()
-
getAssetId
@NotNull public @NotNull UUID getAssetId()
Required. The ID of the asset this attribute should belong to.
-
getTypeId
@NotNull public @NotNull UUID getTypeId()
Required. The ID of the attribute type for the new attribute.
-
getValues
@NotNull public @NotNull List<Object> getValues()
Required. The values for the new attribute.
-
setAssetId
public void setAssetId(@NotNull @NotNull UUID assetId)
Required. The ID of the asset this attribute should belong to.
-
setTypeId
public void setTypeId(@NotNull @NotNull UUID typeId)
Required. The ID of the attribute type for the new attribute.
-
setValues
public void setValues(@NotNull @NotNull List<Object> values)
Required. The values for the new attribute.
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classObject
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-