Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UsersResponseBody" /> class.
 /// </summary>
 /// <param name="users">users.</param>
 /// <param name="pagination">pagination.</param>
 public UsersResponseBody(List <User> users = default(List <User>), Pagination pagination = default(Pagination))
 {
     this.Users      = users;
     this.Pagination = pagination;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="MerchantLocationsResponseBody" /> class.
 /// </summary>
 /// <param name="merchantLocations">merchantLocations.</param>
 /// <param name="pagination">pagination.</param>
 public MerchantLocationsResponseBody(List <MerchantLocation> merchantLocations = default(List <MerchantLocation>), Pagination pagination = default(Pagination))
 {
     this.MerchantLocations = merchantLocations;
     this.Pagination        = pagination;
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MembersResponseBody" /> class.
 /// </summary>
 /// <param name="members">members.</param>
 /// <param name="pagination">pagination.</param>
 public MembersResponseBody(List <Member> members = default(List <Member>), Pagination pagination = default(Pagination))
 {
     this.Members    = members;
     this.Pagination = pagination;
 }