Interface ImageSearchConfigResponse
public interface ImageSearchConfigResponse
ImageSearchConfigResponse
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
ImageSearchConfigResponse imageSearchConfigResponse = ImageSearchConfigResponse.builder()
.status(ImageSearchConfigStatus.ON)
.lastModifiedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ImageSearchConfigResponsebuilder
(ImageSearchConfigResponse template) create builder for ImageSearchConfigResponse instancestatic ImageSearchConfigResponse
deepCopy
(ImageSearchConfigResponse template) factory method to create a deep copy of ImageSearchConfigResponse@NotNull ZonedDateTime
@NotNull ImageSearchConfigStatus
The image search activation status.static ImageSearchConfigResponse
of()
factory methodstatic ImageSearchConfigResponse
of
(ImageSearchConfigResponse template) factory method to create a shallow copy ImageSearchConfigResponsevoid
setLastModifiedAt
(ZonedDateTime lastModifiedAt) set lastModifiedAtvoid
setStatus
(ImageSearchConfigStatus status) The image search activation status.static com.fasterxml.jackson.core.type.TypeReference<ImageSearchConfigResponse>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map function
-
Method Details
-
getStatus
The image search activation status.
- Returns:
- status
-
getLastModifiedAt
- Returns:
- lastModifiedAt
-
setStatus
The image search activation status.
- Parameters:
status
- value to be set
-
setLastModifiedAt
set lastModifiedAt- Parameters:
lastModifiedAt
- value to be set
-
of
factory method- Returns:
- instance of ImageSearchConfigResponse
-
of
factory method to create a shallow copy ImageSearchConfigResponse- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of ImageSearchConfigResponse- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ImageSearchConfigResponse- Returns:
- builder
-
builder
create builder for ImageSearchConfigResponse instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withImageSearchConfigResponse
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-