Package io.moov.sdk.models.operations
Class GetWalletResponse.Builder
- java.lang.Object
-
- io.moov.sdk.models.operations.GetWalletResponse.Builder
-
- Enclosing class:
- GetWalletResponse
public static final class GetWalletResponse.Builder extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetWalletResponsebuild()GetWalletResponse.BuildercontentType(java.lang.String contentType)HTTP response content type for this operationGetWalletResponse.Builderheaders(java.util.Map<java.lang.String,java.util.List<java.lang.String>> headers)GetWalletResponse.BuilderrawResponse(java.net.http.HttpResponse<java.io.InputStream> rawResponse)Raw HTTP response; suitable for custom response parsingGetWalletResponse.BuilderstatusCode(int statusCode)HTTP response status code for this operationGetWalletResponse.Builderwallet(Wallet wallet)The request completed successfully.GetWalletResponse.Builderwallet(java.util.Optional<? extends Wallet> wallet)The request completed successfully.
-
-
-
Method Detail
-
contentType
public GetWalletResponse.Builder contentType(java.lang.String contentType)
HTTP response content type for this operation
-
statusCode
public GetWalletResponse.Builder statusCode(int statusCode)
HTTP response status code for this operation
-
rawResponse
public GetWalletResponse.Builder rawResponse(java.net.http.HttpResponse<java.io.InputStream> rawResponse)
Raw HTTP response; suitable for custom response parsing
-
wallet
public GetWalletResponse.Builder wallet(Wallet wallet)
The request completed successfully.
-
wallet
public GetWalletResponse.Builder wallet(java.util.Optional<? extends Wallet> wallet)
The request completed successfully.
-
headers
public GetWalletResponse.Builder headers(java.util.Map<java.lang.String,java.util.List<java.lang.String>> headers)
-
build
public GetWalletResponse build()
-
-