public SearchLoyaltyAccountsRequest(Models.SearchLoyaltyAccountsRequestLoyaltyAccountQuery query = null,
                                     int?limit     = null,
                                     string cursor = null)
 {
     Query  = query;
     Limit  = limit;
     Cursor = cursor;
 }
 public Builder Query(Models.SearchLoyaltyAccountsRequestLoyaltyAccountQuery query)
 {
     this.query = query;
     return(this);
 }
 public Builder Query(Models.SearchLoyaltyAccountsRequestLoyaltyAccountQuery value)
 {
     query = value;
     return(this);
 }