Class ComplexRelationAttributeRequest
- Object
-
- ComplexRelationAttributeRequest
-
- All Implemented Interfaces:
Serializable
public class ComplexRelationAttributeRequest extends Object implements Serializable
The properties of the attribute to be included in complex relation.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ComplexRelationAttributeRequest.Builder
-
Constructor Summary
Constructors Constructor Description ComplexRelationAttributeRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ComplexRelationAttributeRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
@NotNull UUID
getAttributeTypeId()
Required. The ID of the type of the single attribute for complex relation.List<String>
getValue()
The value of the attribute attached to the complex relation.int
hashCode()
void
setAttributeTypeId(@NotNull UUID attributeTypeId)
Required. The ID of the type of the single attribute for complex relation.void
setValue(List<String> value)
The value of the attribute attached to the complex relation.String
toString()
-
-
-
Method Detail
-
builder
public static ComplexRelationAttributeRequest.Builder builder()
-
getAttributeTypeId
@NotNull public @NotNull UUID getAttributeTypeId()
Required. The ID of the type of the single attribute for complex relation.
-
getValue
public List<String> getValue()
The value of the attribute attached to the complex relation.
-
setAttributeTypeId
public void setAttributeTypeId(@NotNull @NotNull UUID attributeTypeId)
Required. The ID of the type of the single attribute for complex relation.
-
setValue
public void setValue(List<String> value)
The value of the attribute attached to the complex relation.
-
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
-
-