Class LmsGetContentResponse.Builder
- java.lang.Object
-
- com.stackone.stackone_client_java.models.operations.async.LmsGetContentResponse.Builder
-
- Enclosing class:
- LmsGetContentResponse
public static final class LmsGetContentResponse.Builder extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LmsGetContentResponsebuild()LmsGetContentResponse.BuildercontentResult(ContentResult contentResult)The content with the given identifier was retrieved.LmsGetContentResponse.BuildercontentResult(java.util.Optional<? extends ContentResult> contentResult)The content with the given identifier was retrieved.LmsGetContentResponse.BuildercontentType(java.lang.String contentType)HTTP response content type for this operationLmsGetContentResponse.Builderheaders(java.util.Map<java.lang.String,java.util.List<java.lang.String>> headers)LmsGetContentResponse.BuilderrawResponse(java.net.http.HttpResponse<Blob> rawResponse)Raw HTTP response; suitable for custom response parsingLmsGetContentResponse.BuilderstatusCode(int statusCode)HTTP response status code for this operation
-
-
-
Method Detail
-
contentType
public LmsGetContentResponse.Builder contentType(java.lang.String contentType)
HTTP response content type for this operation
-
statusCode
public LmsGetContentResponse.Builder statusCode(int statusCode)
HTTP response status code for this operation
-
rawResponse
public LmsGetContentResponse.Builder rawResponse(java.net.http.HttpResponse<Blob> rawResponse)
Raw HTTP response; suitable for custom response parsing
-
contentResult
public LmsGetContentResponse.Builder contentResult(ContentResult contentResult)
The content with the given identifier was retrieved.
-
contentResult
public LmsGetContentResponse.Builder contentResult(java.util.Optional<? extends ContentResult> contentResult)
The content with the given identifier was retrieved.
-
headers
public LmsGetContentResponse.Builder headers(java.util.Map<java.lang.String,java.util.List<java.lang.String>> headers)
-
build
public LmsGetContentResponse build()
-
-