コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the JsonAtlasUserSavedSearch class.
 /// </summary>
 /// <param name="guid">The GUID of the object.</param>
 /// <param name="name">The name of the saved search.</param>
 /// <param name="ownerName">The owner name of the saved search.</param>
 /// <param name="searchType">Possible values include: 'BASIC',
 /// 'ADVANCED'</param>
 /// <param name="uiParameters">The UI parameters.</param>
 public JsonAtlasUserSavedSearch(string guid = default(string), string name = default(string), string ownerName = default(string), JsonSearchParameters searchParameters = default(JsonSearchParameters), string searchType = default(string), string uiParameters = default(string))
     : base(guid)
 {
     Name             = name;
     OwnerName        = ownerName;
     SearchParameters = searchParameters;
     SearchType       = searchType;
     UiParameters     = uiParameters;
     CustomInit();
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the JsonAtlasSearchResult class.
 /// </summary>
 /// <param name="classification">The classification of the
 /// result.</param>
 /// <param name="entities">An array of entity headers.</param>
 /// <param name="fullTextResult">The full text search result.</param>
 /// <param name="queryText">The query text.</param>
 /// <param name="queryType">Possible values include: 'DSL',
 /// 'FULL_TEXT', 'GREMLIN', 'BASIC', 'ATTRIBUTE',
 /// 'RELATIONSHIP'</param>
 /// <param name="referredEntities">The referred entity header.</param>
 /// <param name="type">The type of the record.</param>
 public JsonAtlasSearchResult(JsonAttributeSearchResult attributes = default(JsonAttributeSearchResult), string classification = default(string), IList <JsonAtlasEntityHeader> entities = default(IList <JsonAtlasEntityHeader>), IList <JsonAtlasFullTextResult> fullTextResult = default(IList <JsonAtlasFullTextResult>), string queryText = default(string), string queryType = default(string), IDictionary <string, JsonAtlasEntityHeader> referredEntities = default(IDictionary <string, JsonAtlasEntityHeader>), JsonSearchParameters searchParameters = default(JsonSearchParameters), string type = default(string))
 {
     Attributes       = attributes;
     Classification   = classification;
     Entities         = entities;
     FullTextResult   = fullTextResult;
     QueryText        = queryText;
     QueryType        = queryType;
     ReferredEntities = referredEntities;
     SearchParameters = searchParameters;
     Type             = type;
     CustomInit();
 }