Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,21 @@ public void setLastName(String value)
lastName = value;
}

/**
* Gets or sets the middle name.
*/
private String middleName;

public String getMiddleName()
{
return middleName;
}

public void setMiddleName(String value)
{
middleName = value;
}

/**
* Gets or sets the phone.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,26 @@ public void setTenantId(String value)
{
__TenantId = value;
}

private String __OrganizationRegistrationNumber;

/**
* Gets the organization registration number.
*
* @return The organization registration number.
*/
public String getOrganizationRegistrationNumber()
{
return __OrganizationRegistrationNumber;
}

/**
* Sets the organization registration number.
*
* @param value The organization registration number.
*/
public void setOrganizationRegistrationNumber(String value)
{
__OrganizationRegistrationNumber = value;
}
}