Package io.moov.sdk.models.components
Class CreateWallet.Builder
- java.lang.Object
-
- io.moov.sdk.models.components.CreateWallet.Builder
-
- Enclosing class:
- CreateWallet
public static final class CreateWallet.Builder extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateWalletbuild()CreateWallet.Builderdescription(java.lang.String description)Description of the wallet.CreateWallet.Builderdescription(java.util.Optional<java.lang.String> description)Description of the wallet.CreateWallet.Buildermetadata(java.util.Map<java.lang.String,java.lang.String> metadata)Free-form key-value pair list.CreateWallet.Buildermetadata(java.util.Optional<? extends java.util.Map<java.lang.String,java.lang.String>> metadata)Free-form key-value pair list.CreateWallet.Buildername(java.lang.String name)Name of the wallet.
-
-
-
Method Detail
-
name
public CreateWallet.Builder name(java.lang.String name)
Name of the wallet.
-
description
public CreateWallet.Builder description(java.lang.String description)
Description of the wallet.
-
description
public CreateWallet.Builder description(java.util.Optional<java.lang.String> description)
Description of the wallet.
-
metadata
public CreateWallet.Builder metadata(java.util.Map<java.lang.String,java.lang.String> metadata)
Free-form key-value pair list. Useful for storing information that is not captured elsewhere.
-
metadata
public CreateWallet.Builder metadata(java.util.Optional<? extends java.util.Map<java.lang.String,java.lang.String>> metadata)
Free-form key-value pair list. Useful for storing information that is not captured elsewhere.
-
build
public CreateWallet build()
-
-