Interface ImageSearchConfigResponse


public interface ImageSearchConfigResponse
ImageSearchConfigResponse
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 Details

    • getStatus

      @NotNull @NotNull ImageSearchConfigStatus getStatus()

      The image search activation status.

      Returns:
      status
    • getLastModifiedAt

      @NotNull @NotNull ZonedDateTime getLastModifiedAt()
      Returns:
      lastModifiedAt
    • setStatus

      void setStatus(ImageSearchConfigStatus status)

      The image search activation status.

      Parameters:
      status - value to be set
    • setLastModifiedAt

      void setLastModifiedAt(ZonedDateTime lastModifiedAt)
      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

      default <T> T withImageSearchConfigResponse(Function<ImageSearchConfigResponse,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<ImageSearchConfigResponse> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference