Package com.confidentify.client.model
Class PersonNameDetailsRequestRecord
- java.lang.Object
-
- com.confidentify.client.model.PersonNameDetailsRequestRecord
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2020-06-18T21:51:17.428661900+02:00[Europe/Paris]") public class PersonNameDetailsRequestRecord extends Object
Request format used to process a name in parts
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_FAMILYstatic StringSERIALIZED_NAME_GIVENstatic StringSERIALIZED_NAME_IDstatic StringSERIALIZED_NAME_MIDDLEstatic StringSERIALIZED_NAME_SUFFIX
-
Constructor Summary
Constructors Constructor Description PersonNameDetailsRequestRecord()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)PersonNameDetailsRequestRecordfamily(String family)StringgetFamily()The family name (aka.StringgetGiven()The given name (aka.StringgetId()Get idStringgetMiddle()The middle name, if availableStringgetSuffix()The name suffix, if availablePersonNameDetailsRequestRecordgiven(String given)inthashCode()PersonNameDetailsRequestRecordid(String id)PersonNameDetailsRequestRecordmiddle(String middle)voidsetFamily(String family)voidsetGiven(String given)voidsetId(String id)voidsetMiddle(String middle)voidsetSuffix(String suffix)PersonNameDetailsRequestRecordsuffix(String suffix)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_ID
public static final String SERIALIZED_NAME_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_GIVEN
public static final String SERIALIZED_NAME_GIVEN
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_MIDDLE
public static final String SERIALIZED_NAME_MIDDLE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_FAMILY
public static final String SERIALIZED_NAME_FAMILY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_SUFFIX
public static final String SERIALIZED_NAME_SUFFIX
- See Also:
- Constant Field Values
-
-
Method Detail
-
id
public PersonNameDetailsRequestRecord id(String id)
-
setId
public void setId(String id)
-
given
public PersonNameDetailsRequestRecord given(String given)
-
getGiven
@Nullable public String getGiven()
The given name (aka. first name in western naming culture)- Returns:
- given
-
setGiven
public void setGiven(String given)
-
middle
public PersonNameDetailsRequestRecord middle(String middle)
-
setMiddle
public void setMiddle(String middle)
-
family
public PersonNameDetailsRequestRecord family(String family)
-
getFamily
@Nullable public String getFamily()
The family name (aka. last name of surname in western naming culture)- Returns:
- family
-
setFamily
public void setFamily(String family)
-
suffix
public PersonNameDetailsRequestRecord suffix(String suffix)
-
setSuffix
public void setSuffix(String suffix)
-
-