public ShippingDestinationRequest()
 {
     this.addressField = new Address();
     this.phoneNumberField = new MobilePhone();
 }
 public ValidateTapCheckoutRequest()
 {
     this.mobilePhoneField = new MobilePhone();
 }
 public ResetPasswordRequest()
 {
     this.mobilePhoneField = new MobilePhone();
     this.securityChallengeField = new SecurityChallenge();
 }
 public SendOneTimePasscodeRequest()
 {
     this.mobilePhoneField = new MobilePhone();
 }
 public ProfileRequest()
 {
     this.dateOfBirthField = new DateOfBirth();
     this.captchaField = new Captcha();
     this.personalGreetingField = new PersonalGreeting();
     this.securityChallengeField = new List<SecurityChallenge>();
     this.preferencesField = new Preferences();
     this.nameField = new ProfileName();
     this.mobilePhoneField = new MobilePhone();
 }
 public PersonalGreetingRequest()
 {
     this.mobilePhoneField = new MobilePhone();
 }
 public PaymentCardRequest()
 {
     this.addressField = new Address();
     this.phoneNumberField = new MobilePhone();
     this.cardBrandField = new CardBrand();
 }
 public PaymentCard()
 {
     this.issuerField = new Logo();
     this.addressField = new Address();
     this.phoneNumberField = new MobilePhone();
     this.cardBrandField = new CardBrand();
 }
 public LoginDataRequest()
 {
     this.mobilePhoneField = new MobilePhone();
 }