public AuthorizedCheckout()
 {
     this.rewardProgramField = new RewardProgram();
     this.authenticationOptionsField = new AuthenticationOptions();
     this.shippingAddressField = new ShippingAddress();
     this.contactField = new Contact();
     this.cardField = new Card();
 }
 public PrecheckoutData()
 {
     this.errorsField = new List<Error>();
     this.rewardProgramsField = new PrecheckoutRewardPrograms();
     this.shippingAddressesField = new PrecheckoutShippingAddresses();
     this.contactField = new Contact();
     this.cardsField = new PrecheckoutCards();
 }