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