Class AddDiagramPictureRequest
- Object
-
- AddDiagramPictureRequest
-
- All Implemented Interfaces:
Serializable
public class AddDiagramPictureRequest extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AddDiagramPictureRequest.Builder
-
Constructor Summary
Constructors Constructor Description AddDiagramPictureRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static AddDiagramPictureRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
@NotNull UUID
getAssetId()
Required. The ID of the Asset for which the picture should be taken.@NotNull UUID
getViewId()
Required. The ID of the View for which the picture should be taken.int
hashCode()
static AddDiagramPictureRequest.Builder
newBuilder()
Deprecated.This method will be removed in the future.void
setAssetId(@NotNull UUID assetId)
Required. The ID of the Asset for which the picture should be taken.void
setViewId(@NotNull UUID viewId)
Required. The ID of the View for which the picture should be taken.String
toString()
-
-
-
Method Detail
-
newBuilder
@Deprecated public static AddDiagramPictureRequest.Builder newBuilder()
Deprecated.This method will be removed in the future. Please usebuilder()
-
builder
public static AddDiagramPictureRequest.Builder builder()
-
getAssetId
@NotNull public @NotNull UUID getAssetId()
Required. The ID of the Asset for which the picture should be taken.
-
getViewId
@NotNull public @NotNull UUID getViewId()
Required. The ID of the View for which the picture should be taken.
-
setAssetId
public void setAssetId(@NotNull @NotNull UUID assetId)
Required. The ID of the Asset for which the picture should be taken.
-
setViewId
public void setViewId(@NotNull @NotNull UUID viewId)
Required. The ID of the View for which the picture should be taken.
-
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
-
-