/// <summary>
 /// Initializes a new instance of the <see cref="IViewSchemasResponse" /> class.
 /// </summary>
 /// <param name="ViewSchemas">List of the view schema..</param>
 /// <param name="Paging">Paging info..</param>
 public IViewSchemasResponse(List <IViewSchemaResponse> ViewSchemas = default(List <IViewSchemaResponse>), IPaginated Paging = default(IPaginated))
 {
     this.ViewSchemas = ViewSchemas;
     this.Paging      = Paging;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="IEventsResponse" /> class.
 /// </summary>
 /// <param name="Events">List of the events contained in the transaction..</param>
 /// <param name="Paging">Paging info..</param>
 public IEventsResponse(List <IEventResponse> Events = default(List <IEventResponse>), IPaginated Paging = default(IPaginated))
 {
     this.Events = Events;
     this.Paging = Paging;
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="IFrontViewsResponse" /> class.
 /// </summary>
 /// <param name="FrontViews">List of the front view..</param>
 /// <param name="Paging">Paging info..</param>
 public IFrontViewsResponse(List <IFrontViewResponse> FrontViews = default(List <IFrontViewResponse>), IPaginated Paging = default(IPaginated))
 {
     this.FrontViews = FrontViews;
     this.Paging     = Paging;
 }