java.lang.Object
com.sportradar.mbs.sdk.entities.internal.Request

public class Request extends Object
Represents a request object used in the application.
  • Constructor Details

    • Request

      public Request()
  • Method Details

    • newBuilder

      public static Request.Builder newBuilder()
      Returns a new instance of the Request.Builder class.
      Returns:
      A new instance of the Request.Builder class.
    • getCorrelationId

      public String getCorrelationId()
      Gets the correlation ID of the request.
      Returns:
      The correlation ID of the request.
    • setCorrelationId

      public void setCorrelationId(String value)
      Sets the correlation ID of the request.
      Parameters:
      value - The correlation ID to set.
    • getTimestampUtc

      public long getTimestampUtc()
      Gets the UTC millis timestamp of the request.
      Returns:
      The UTC millis timestamp of the request.
    • setTimestampUtc

      public void setTimestampUtc(long value)
      Sets the UTC millis timestamp of the request.
      Parameters:
      value - The UTC millis timestamp to set.
    • getOperatorId

      public long getOperatorId()
      Gets the operator ID of the request.
      Returns:
      The operator ID of the request.
    • setOperatorId

      public void setOperatorId(long value)
      Sets the operator ID of the request.
      Parameters:
      value - The operator ID to set.
    • getOperation

      public String getOperation()
      Gets the operation of the request.
      Returns:
      The operation of the request.
    • setOperation

      public void setOperation(String value)
      Sets the operation of the request.
      Parameters:
      value - The operation to set.
    • getVersion

      public String getVersion()
      Gets the version of the request.
      Returns:
      The version of the request.
    • setVersion

      public void setVersion(String value)
      Sets the version of the request.
      Parameters:
      value - The version to set.
    • getContent

      public ContentRequest getContent()
      Gets the content of the request.
      Returns:
      The content of the request.
    • setContent

      public void setContent(ContentRequest value)
      Sets the content of the request.
      Parameters:
      value - The content to set.