public SearchCatalogObjectsRequest(string cursor = null,
                                    IList <string> objectTypes = null,
                                    bool?includeDeletedObjects = null,
                                    bool?includeRelatedObjects = null,
                                    string beginTime           = null,
                                    Models.CatalogQuery query  = null,
                                    int?limit = null)
 {
     Cursor                = cursor;
     ObjectTypes           = objectTypes;
     IncludeDeletedObjects = includeDeletedObjects;
     IncludeRelatedObjects = includeRelatedObjects;
     BeginTime             = beginTime;
     Query = query;
     Limit = limit;
 }
 public Builder Query(Models.CatalogQuery query)
 {
     this.query = query;
     return(this);
 }
Beispiel #3
0
 public Builder Query(Models.CatalogQuery value)
 {
     query = value;
     return(this);
 }