Class PostCustomerNameBankModel
- java.lang.Object
-
- app.cybrid.cybrid_api_bank.client.model.PostCustomerNameBankModel
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-12-30T23:02:39.696851Z[Etc/UTC]") public class PostCustomerNameBankModel extends Object
The customer's name. Optional when type is individual.
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_FIRSTstatic StringJSON_PROPERTY_LASTstatic StringJSON_PROPERTY_MIDDLE
-
Constructor Summary
Constructors Constructor Description PostCustomerNameBankModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)PostCustomerNameBankModelfirst(String first)StringgetFirst()The customer's first name.org.openapitools.jackson.nullable.JsonNullable<String>getFirst_JsonNullable()StringgetLast()The customer's last name.org.openapitools.jackson.nullable.JsonNullable<String>getLast_JsonNullable()StringgetMiddle()The customer's middle name.org.openapitools.jackson.nullable.JsonNullable<String>getMiddle_JsonNullable()inthashCode()PostCustomerNameBankModellast(String last)PostCustomerNameBankModelmiddle(String middle)voidsetFirst(String first)voidsetFirst_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> first)voidsetLast(String last)voidsetLast_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> last)voidsetMiddle(String middle)voidsetMiddle_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> middle)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_FIRST
public static final String JSON_PROPERTY_FIRST
- See Also:
- Constant Field Values
-
JSON_PROPERTY_MIDDLE
public static final String JSON_PROPERTY_MIDDLE
- See Also:
- Constant Field Values
-
JSON_PROPERTY_LAST
public static final String JSON_PROPERTY_LAST
- See Also:
- Constant Field Values
-
-
Method Detail
-
first
public PostCustomerNameBankModel first(String first)
-
getFirst
@Nullable public String getFirst()
The customer's first name. Required when type is individual.- Returns:
- first
-
getFirst_JsonNullable
public org.openapitools.jackson.nullable.JsonNullable<String> getFirst_JsonNullable()
-
setFirst_JsonNullable
public void setFirst_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> first)
-
setFirst
public void setFirst(String first)
-
middle
public PostCustomerNameBankModel middle(String middle)
-
getMiddle
@Nullable public String getMiddle()
The customer's middle name. Optional when type is individual.- Returns:
- middle
-
getMiddle_JsonNullable
public org.openapitools.jackson.nullable.JsonNullable<String> getMiddle_JsonNullable()
-
setMiddle_JsonNullable
public void setMiddle_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> middle)
-
setMiddle
public void setMiddle(String middle)
-
last
public PostCustomerNameBankModel last(String last)
-
getLast
@Nullable public String getLast()
The customer's last name. Required when type is individual.- Returns:
- last
-
getLast_JsonNullable
public org.openapitools.jackson.nullable.JsonNullable<String> getLast_JsonNullable()
-
setLast_JsonNullable
public void setLast_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> last)
-
setLast
public void setLast(String last)
-
-