Class UpdateRegistrationsRequestType
- java.lang.Object
-
- com.fifa.connectid.sdk.core.api.models.UpdateRegistrationsRequestType
-
public class UpdateRegistrationsRequestType extends Object
The UpdateRegistrationsRequestType model.
-
-
Constructor Summary
Constructors Constructor Description UpdateRegistrationsRequestType()Initializes a new instance of the UpdateRegistrationsRequestType class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PersonRegistrationsTypenewRegistrations()Get new registrations that will replace the old ones.PersonRegistrationsTypeoldRegistrations()Get old registrations to be updated.StringpersonId()Get fIFA Unique Identifier.UpdateRegistrationsRequestTypewithNewRegistrations(PersonRegistrationsType newRegistrations)Set new registrations that will replace the old ones.UpdateRegistrationsRequestTypewithOldRegistrations(PersonRegistrationsType oldRegistrations)Set old registrations to be updated.UpdateRegistrationsRequestTypewithPersonId(String personId)Set fIFA Unique Identifier.
-
-
-
Method Detail
-
personId
public String personId()
Get fIFA Unique Identifier.- Returns:
- the personId value
-
withPersonId
public UpdateRegistrationsRequestType withPersonId(String personId)
Set fIFA Unique Identifier.- Parameters:
personId- the personId value to set- Returns:
- the UpdateRegistrationsRequestType object itself.
-
oldRegistrations
public PersonRegistrationsType oldRegistrations()
Get old registrations to be updated.- Returns:
- the oldRegistrations value
-
withOldRegistrations
public UpdateRegistrationsRequestType withOldRegistrations(PersonRegistrationsType oldRegistrations)
Set old registrations to be updated.- Parameters:
oldRegistrations- the oldRegistrations value to set- Returns:
- the UpdateRegistrationsRequestType object itself.
-
newRegistrations
public PersonRegistrationsType newRegistrations()
Get new registrations that will replace the old ones.- Returns:
- the newRegistrations value
-
withNewRegistrations
public UpdateRegistrationsRequestType withNewRegistrations(PersonRegistrationsType newRegistrations)
Set new registrations that will replace the old ones.- Parameters:
newRegistrations- the newRegistrations value to set- Returns:
- the UpdateRegistrationsRequestType object itself.
-
-