<Compile Include="PlanAIRTests.cs" />\r
<Compile Include="TimecodeTests.cs" />\r
<Compile Include="Db2JsonIT.cs" />\r
- <Compile Include="MediaCubeClientIT.cs" />\r
<Compile Include="Properties\AssemblyInfo.cs" />\r
</ItemGroup>\r
<ItemGroup>\r
+++ /dev/null
-using Microsoft.VisualStudio.TestTools.UnitTesting;\r
-using IO.Swagger.Api;\r
-using IO.Swagger.Model;\r
-using System.Diagnostics;\r
-using System.Net;\r
-using NexioClient;\r
-using System.Threading;\r
-using Newtonsoft.Json.Linq;\r
-using System.Linq;\r
-\r
-namespace IntegrationTests {\r
- [TestClass]\r
- public class MediaCubeAPITests {\r
-\r
- [ClassInitialize]\r
- static public void ClassInitialize(TestContext context) {\r
- ServicePointManager.ServerCertificateValidationCallback += (s, c, ch, e) => true;\r
- }\r
-\r
- [TestMethod]\r
- public void TestLoginLogout() {\r
- DefaultApi sut = new DefaultApi("https://localhost:8443/rest/service");\r
- UserInfo result = sut.LoginPost(new LoginParameters() { Username = "admin", Password = "admin" });\r
- Assert.IsNotNull(result);\r
- Debug.WriteLine("Logged in");\r
- sut.MasLogoutGet();\r
- }\r
-\r
- [TestMethod]\r
- public void TestWebSocket() {\r
- CountdownEvent cde = new CountdownEvent(1);\r
- NexioAPI ws = new NexioAPI("ws://localhost:8080/services/nexio");\r
- ws.Open((sender, e) => {\r
- JObject resultObject = JObject.Parse(e.Data);\r
- JToken resultList = JToken.Parse(resultObject.GetValue("data").ToString());\r
- resultList.Children().First().ToList().ForEach(d => {\r
- Debug.WriteLine(d["longnameid"]);\r
- });\r
- cde.Signal();\r
- });\r
- ws.GetListAsync();\r
- cde.Wait();\r
- ws.Close();\r
- }\r
-\r
- }\r
-}\r
+++ /dev/null
-using System;
-using System.Collections.Generic;
-using RestSharp;
-using IO.Swagger.Client;
-using IO.Swagger.Model;
-
-namespace IO.Swagger.Api
-{
- /// <summary>
- /// Represents a collection of functions to interact with the API endpoints
- /// </summary>
- public interface IDefaultApi
- {
- /// <summary>
- /// sessionId alapján elkér a managertõl egy UserInfo-t.
- /// </summary>
- /// <param name="username"></param>
- /// <returns>UserInfo</returns>
- UserInfo LoginPost (LoginParameters username);
- /// <summary>
- /// A futó munkafolyamat leállításra kerül és kikerül a runQueue-ból.
- /// </summary>
- /// <param name="jobId"></param>
- /// <returns></returns>
- void MasCancelJobPost (long? jobId);
- /// <summary>
- /// A kliens felõl érkezõ új munkafolyamat indítása, amely a JobEngine submit metódusát hívja és jobStart paraméter alapján eldönti, hogy a munkafolyamat milyen módon kerüljön be a folyamatütemezõbe.
- /// </summary>
- /// <param name="createJobParameters"></param>
- /// <returns>Job</returns>
- Job MasCreateJobPost (CreateJobParameters createJobParameters);
- /// <summary>
- /// Név alapján kitörli a Sablont.
- /// </summary>
- /// <param name="name"></param>
- /// <returns>bool?</returns>
- bool? MasDeleteTemplatePost (string name);
- /// <summary>
- /// Az ItemManager-tõl elkéri az adatbázisban eltárolt összes DomainCategory típusú entitást.
- /// </summary>
- /// <returns>List<DomainCategory></returns>
- List<DomainCategory> MasGetAllDomainCategoryGet ();
- /// <summary>
- /// Az ItemManager-tõl elkéri az adatbázisban eltárolt összes MetadataElement típusú entitást.
- /// </summary>
- /// <returns>List<MetadataElement></returns>
- List<MetadataElement> MasGetAllMetadataElementGet ();
- /// <summary>
- /// Az ItemManager-tõl elkéri az adatbázisban eltárolt összes MetadataType típusú entitást.
- /// </summary>
- /// <returns>List<MetadataType></returns>
- List<MetadataType> MasGetAllMetadataTypeGet ();
- /// <summary>
- /// Fake hívás, így a webservice-en keresztül elérhetõ a Signal objektum.
- /// </summary>
- /// <returns>List<Signal></returns>
- List<Signal> MasGetAllSignalGet ();
- /// <summary>
- /// Az ItemManager-tõl elkéri az adatbázisban eltárolt összes Store típusú entitást.
- /// </summary>
- /// <returns>List<Store></returns>
- List<Store> MasGetAllStoreGet ();
- /// <summary>
- /// Az ItemManager-tõl elkéri az adatbázisban eltárolt összes UserInfo típusú entitást.
- /// </summary>
- /// <returns>List<UserInfo></returns>
- List<UserInfo> MasGetAllUserInfoGet ();
- /// <summary>
- /// Fake hívás.
- /// </summary>
- /// <returns>Domains</returns>
- Domains MasGetDomainsGet ();
- /// <summary>
- /// Az ItemManager elkéri azokat a Domain-eket, melyek domainCategoryId-je és filtere egyenlõ filterId-val, illetve filter-el.
- /// </summary>
- /// <param name="getFilteredDomainByDisplayParameters"></param>
- /// <returns>List<Domain></returns>
- List<Domain> MasGetFilteredDomainByDisplayPost (GetFilteredDomainByDisplayParameters getFilteredDomainByDisplayParameters);
- /// <summary>
- /// Az ItemManager elkéri azokat a Domain-eket, melyek domainCategoryId-je egyenlõ filterId.
- /// </summary>
- /// <param name="filterId"></param>
- /// <returns>List<Domain></returns>
- List<Domain> MasGetFilteredDomainPost (long? filterId);
- /// <summary>
- /// filterId alapján elkéri a Foldereket az ItemManager-tõl.
- /// </summary>
- /// <param name="filterId"></param>
- /// <returns>List<Folder></returns>
- List<Folder> MasGetFilteredFolderPost (long? filterId);
- /// <summary>
- /// Elkéri az ItemManager-tõl az összes olyan Médiát, amelynek itemId-ja megegyezik a bemeneti paraméterként kapott filterId-val.
- /// </summary>
- /// <param name="filterId"></param>
- /// <returns>List<Media></returns>
- List<Media> MasGetFilteredMediaPost (long? filterId);
- /// <summary>
- /// ItemManager-tõl elkéri az összes olyan mentett vágólistát, amely name-el kezdõdik.
- /// </summary>
- /// <param name="getFilteredParameters"></param>
- /// <returns>List<Scene></returns>
- List<Scene> MasGetFilteredScenePost (GetFilteredParameters getFilteredParameters);
- /// <summary>
- /// ItemManager-tõl elkéri az összes olyan mentett keresést, amely filter-rel kezdõdik.
- /// </summary>
- /// <param name="getFilteredParameters"></param>
- /// <returns>List<SearchDefinition></returns>
- List<SearchDefinition> MasGetFilteredSearchDefinitionPost (GetFilteredParameters getFilteredParameters);
- /// <summary>
- /// ItemManager-tõl elkéri az összes olyan mappát, amely childId-ja filterId-vel egyenlõ.
- /// </summary>
- /// <param name="filterId"></param>
- /// <returns>List<Item></returns>
- List<Item> MasGetFoldersPost (long? filterId);
- /// <summary>
- /// ItemManager-tõl elkéri a bemeneti paraméterként kapott id-vel rendelkezõ Item-et.
- /// </summary>
- /// <param name="id"></param>
- /// <returns>Item</returns>
- Item MasGetItemPost (long? id);
- /// <summary>
- /// ItemManager-tõl elkéri a bemeneti paraméterként kapott id-vel rendelkezõ ItemType-ot.
- /// </summary>
- /// <param name="id"></param>
- /// <returns>ItemType</returns>
- ItemType MasGetItemTypePost (long? id);
- /// <summary>
- /// Típusleírók lekérdezése. Az adatmodell dinamikus, az anyag és verzió objektumok bõvítését szolgáló metaadatokat tartalmazza, kiegészítve az adatbázisban elõre definiált mezõk metaadat leíróival.
- /// </summary>
- /// <returns>List<ItemType></returns>
- List<ItemType> MasGetItemTypesGet ();
- /// <summary>
- /// ItemManager-tõl elkéri a bemeneti paraméterként kapott jobId-vel rendelkezõ Job-ot.
- /// </summary>
- /// <param name="jobId"></param>
- /// <returns>Job</returns>
- Job MasGetJobPost (long? jobId);
- /// <summary>
- /// Visszaadja a rendszerben tárolt összes sablon-t és végrehajtó osztályok listáját egy JobTemplatesInfo osztályba csomagolva.
- /// </summary>
- /// <returns>JobTemplatesInfo</returns>
- JobTemplatesInfo MasGetJobTemplatesInfoGet ();
- /// <summary>
- /// Naplózási szint alapján visszaad egy napló listát.
- /// </summary>
- /// <param name="logLevel"></param>
- /// <returns>List<LogEvent></returns>
- List<LogEvent> MasGetLogEventsPost (LogLevel logLevel);
- /// <summary>
- /// ItemManager-tõl elkéri a bemeneti paraméterként kapott id-vel rendelkezõ Media-t.
- /// </summary>
- /// <param name="id"></param>
- /// <returns>Media</returns>
- Media MasGetMediaPost (long? id);
- /// <summary>
- /// Visszaadja a JobEngine getUserMessageQueues() lista méretét.
- /// </summary>
- /// <returns>int?</returns>
- int? MasGetMessageCountGet ();
- /// <summary>
- /// Visszadja messageId alapján az a UserMessage-et, amely a JobEngine getUserMessageQueues() listájában van.
- /// </summary>
- /// <param name="messageId"></param>
- /// <returns>UserMessage</returns>
- UserMessage MasGetMessagePost (long? messageId);
- /// <summary>
- /// Visszaadja a JobEngine getUserMessageQueues()-ban lévõ UserMessage-ek listáját.
- /// </summary>
- /// <returns>List<UserMessage></returns>
- List<UserMessage> MasGetMessagesGet ();
- /// <summary>
- /// fake hívás.
- /// </summary>
- /// <returns>MdType</returns>
- MdType MasGetMetadataTypeGet ();
- /// <summary>
- /// A bemeneti paraméterként kapott storeUri-tól elkéri a hozzá tartozó remote file-okat.
- /// </summary>
- /// <param name="id"></param>
- /// <returns>RemoteFileResponse</returns>
- RemoteFileResponse MasGetRemoteFilesPost (StoreUri id);
- /// <summary>
- /// Az id azonosítóval rendelkezõ Scene objektumot kéri el az ItemManager-tõl.
- /// </summary>
- /// <param name="id"></param>
- /// <returns>Scene</returns>
- Scene MasGetScenePost (long? id);
- /// <summary>
- /// Az ItemManager-tõl elkéri a bemeneti paraméterben kapott azonosítóval rendelkezõ Mentett keresési feltételt.
- /// </summary>
- /// <param name="id"></param>
- /// <returns>SearchDefinition</returns>
- SearchDefinition MasGetSearchDefinitionsPost (long? id);
- /// <summary>
- /// ItemManager-tõl elkéri az összes olyan Szkript-et, amely mediaId-je megyezik a bemeneti paraméterként kapott mediaId-vel.
- /// </summary>
- /// <param name="mediaId"></param>
- /// <returns>List<Shot></returns>
- List<Shot> MasGetShotsPost (long? mediaId);
- /// <summary>
- /// Visszatér az illesztett transzkóder profil információkkal.
- /// </summary>
- /// <returns>List<TranscoderProfile></returns>
- List<TranscoderProfile> MasGetTranscodeProfilesGet ();
- /// <summary>
- /// fake hívás
- /// </summary>
- /// <returns>List<UserRight></returns>
- List<UserRight> MasGetUserRightGet ();
- /// <summary>
- /// nincs implementálva
- /// </summary>
- /// <returns></returns>
- void MasLogoutGet ();
- /// <summary>
- /// Szerializáláshoz beregisztrált objektum típusok, melyek object-ként mennének át a proxy-n.
- /// </summary>
- /// <returns>List<Object></returns>
- List<Object> MasRegisterGet ();
- /// <summary>
- /// Az osztály név és azonosító lista alapján az ItemManager-el eltávolítja az entitásokat az adatbázisból.
- /// </summary>
- /// <param name="removeParameters"></param>
- /// <returns>SystemResponse</returns>
- SystemResponse MasRemoveAllPost (RemoveParameters removeParameters);
- /// <summary>
- /// Az osztály név és azonosító lista alapján az ItemManager-el eltávolítja az entitásokat az adatbázisból.
- /// </summary>
- /// <param name="removeParameters"></param>
- /// <returns>SystemResponse</returns>
- SystemResponse MasRemovePost (RemoveParameters removeParameters);
- /// <summary>
- /// Elhelyez egy UserReplyMessage típusú üzenetet a motor rendszerüzenet várakozási sorába.
- /// </summary>
- /// <param name="replyMessageParameters"></param>
- /// <returns></returns>
- void MasReplyMessagePost (ReplyMessageParameters replyMessageParameters);
- /// <summary>
- /// Munkafolyamat azonosító alapján egy új újraindítási kérelmet helyez el a motor rendszerüzenet várakozási sorába.
- /// </summary>
- /// <param name="jobId"></param>
- /// <returns></returns>
- void MasRestartJobPost (long? jobId);
- /// <summary>
- /// Munkafolyamat azonosító alapján egy új folytatási kérelmet helyez el a motor rendszerüzenet várakozási sorába.
- /// </summary>
- /// <param name="jobId"></param>
- /// <returns></returns>
- void MasResumeJobPost (long? jobId);
- /// <summary>
- /// Egy új/létezõ lista kategóriát ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="domainCategory"></param>
- /// <returns>DomainCategoryResponse</returns>
- DomainCategoryResponse MasSaveDomainCategoryPost (DomainCategory domainCategory);
- /// <summary>
- /// Egy új/létezõ listát ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="domain"></param>
- /// <returns>DomainResponse</returns>
- DomainResponse MasSaveDomainPost (Domain domain);
- /// <summary>
- /// Egy új/létezõ mappát ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="folder"></param>
- /// <returns>FolderResponse</returns>
- FolderResponse MasSaveFolderPost (Folder folder);
- /// <summary>
- /// Egy új/létezõ Anyagot ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="item"></param>
- /// <returns>ItemResponse</returns>
- ItemResponse MasSaveItemPost (Item item);
- /// <summary>
- /// Egy új/létezõ Anyag típust ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="itemType"></param>
- /// <returns>ItemTypeResponse</returns>
- ItemTypeResponse MasSaveItemTypePost (ItemType itemType);
- /// <summary>
- /// Egy új/létezõ Kópiát ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="mediaFile"></param>
- /// <returns>MediaFileResponse</returns>
- MediaFileResponse MasSaveMediaFilePost (MediaFile mediaFile);
- /// <summary>
- /// Egy új/létezõ Verziót ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="media"></param>
- /// <returns>MediaResponse</returns>
- MediaResponse MasSaveMediaPost (Media media);
- /// <summary>
- /// Egy új/létezõ Meta adat elemet ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="metadataElement"></param>
- /// <returns>MetadataElementResponse</returns>
- MetadataElementResponse MasSaveMetadataElementPost (MetadataElement metadataElement);
- /// <summary>
- /// Egy új/létezõ Meta adatot ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="metadata"></param>
- /// <returns>MetadataResponse</returns>
- MetadataResponse MasSaveMetadataPost (Metadata metadata);
- /// <summary>
- /// Egy új/létezõ Meta adat típust ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="metadataType"></param>
- /// <returns>MetadataTypeResponse</returns>
- MetadataTypeResponse MasSaveMetadataTypePost (MetadataType metadataType);
- /// <summary>
- /// Egy új/létezõ Vágólista elemet ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="sceneContent"></param>
- /// <returns>SceneContentResponse</returns>
- SceneContentResponse MasSaveSceneContentPost (SceneContent sceneContent);
- /// <summary>
- /// Egy új/létezõ Vágólistát ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="scene"></param>
- /// <returns>SceneResponse</returns>
- SceneResponse MasSaveScenePost (Scene scene);
- /// <summary>
- /// Egy új/létezõ Keresést ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="searchDefinition"></param>
- /// <returns>SearchDefinitionResponse</returns>
- SearchDefinitionResponse MasSaveSearchDefinitionPost (SearchDefinition searchDefinition);
- /// <summary>
- /// Egy új/létezõ Szkriptet ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="shot"></param>
- /// <returns>ShotResponse</returns>
- ShotResponse MasSaveShotPost (Shot shot);
- /// <summary>
- /// Egy új/létezõ Tárolót ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="store"></param>
- /// <returns>StoreResponse</returns>
- StoreResponse MasSaveStorePost (Store store);
- /// <summary>
- /// Egy új/létezõ Tároló uri-t ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="storeUri"></param>
- /// <returns>StoreUriResponse</returns>
- StoreUriResponse MasSaveStoreUriPost (StoreUri storeUri);
- /// <summary>
- /// Egy új Sablont tölt be a folyamatkezelõ motor program betöltõjébe.
- /// </summary>
- /// <param name="template"></param>
- /// <returns>TemplateResponse</returns>
- TemplateResponse MasSaveTemplatePost (Template template);
- /// <summary>
- /// Egy új/létezõ Felhasználót ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="userInfo"></param>
- /// <returns>UserInfoResponse</returns>
- UserInfoResponse MasSaveUserInfoPost (UserInfo userInfo);
- /// <summary>
- /// Anyagok keresése. A keresés elsõ futtatásakor csak az elsõ SearchResult tartalmaz anyagokat, a találati lista elsõ oldalát, cím szerint rendezetten. Újbóli futtatás esetén a paraméter megjelenítési információinak módosításával változtatható az anyagok listája.
- /// </summary>
- /// <param name="queryObject"></param>
- /// <returns>List<SearchResult></returns>
- List<SearchResult> MasSearchItemPost (QueryObject queryObject);
- /// <summary>
- /// Egy QueryObject paraméter alapján elkéri az ItemManager-tõl a paraméterben tárolt szûrési feltételeknek megfelelõ Job-ok listáját.
- /// </summary>
- /// <param name="parameter"></param>
- /// <returns>List<Job></returns>
- List<Job> MasSearchJobsPost (QueryObject parameter);
- /// <summary>
- /// Munkafolyamat motor leállítása.
- /// </summary>
- /// <returns></returns>
- void MasShutdownGet ();
- /// <summary>
- /// Munkafolyamat motor elindítása.
- /// </summary>
- /// <returns></returns>
- void MasStartupGet ();
- /// <summary>
- /// Munkafolyamat azonosító alapján egy új felfüggesztési kérelmet helyez el a motor rendszerüzenet várakozási sorába.
- /// </summary>
- /// <param name="jobId"></param>
- /// <returns></returns>
- void MasSuspendJobPost (long? jobId);
- }
-
- /// <summary>
- /// Represents a collection of functions to interact with the API endpoints
- /// </summary>
- public class DefaultApi : IDefaultApi
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="DefaultApi"/> class.
- /// </summary>
- /// <param name="apiClient"> an instance of ApiClient (optional)</param>
- /// <returns></returns>
- public DefaultApi(ApiClient apiClient = null)
- {
- if (apiClient == null) // use the default one in Configuration
- this.ApiClient = Configuration.DefaultApiClient;
- else
- this.ApiClient = apiClient;
- }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="DefaultApi"/> class.
- /// </summary>
- /// <returns></returns>
- public DefaultApi(String basePath)
- {
- this.ApiClient = new ApiClient(basePath);
- }
-
- /// <summary>
- /// Sets the base path of the API client.
- /// </summary>
- /// <param name="basePath">The base path</param>
- /// <value>The base path</value>
- public void SetBasePath(String basePath)
- {
- this.ApiClient.BasePath = basePath;
- }
-
- /// <summary>
- /// Gets the base path of the API client.
- /// </summary>
- /// <param name="basePath">The base path</param>
- /// <value>The base path</value>
- public String GetBasePath(String basePath)
- {
- return this.ApiClient.BasePath;
- }
-
- /// <summary>
- /// Gets or sets the API client.
- /// </summary>
- /// <value>An instance of the ApiClient</value>
- public ApiClient ApiClient {get; set;}
-
- /// <summary>
- /// sessionId alapján elkér a managertõl egy UserInfo-t.
- /// </summary>
- /// <param name="username"></param>
- /// <returns>UserInfo</returns>
- public UserInfo LoginPost (LoginParameters username)
- {
-
- // verify the required parameter 'username' is set
- if (username == null) throw new ApiException(400, "Missing required parameter 'username' when calling LoginPost");
-
-
- var path = "/login";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(username); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling LoginPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling LoginPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (UserInfo) ApiClient.Deserialize(response.Content, typeof(UserInfo), response.Headers);
- }
-
- /// <summary>
- /// A futó munkafolyamat leállításra kerül és kikerül a runQueue-ból.
- /// </summary>
- /// <param name="jobId"></param>
- /// <returns></returns>
- public void MasCancelJobPost (long? jobId)
- {
-
- // verify the required parameter 'jobId' is set
- if (jobId == null) throw new ApiException(400, "Missing required parameter 'jobId' when calling MasCancelJobPost");
-
-
- var path = "/mas/cancelJob";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(jobId); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasCancelJobPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasCancelJobPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return;
- }
-
- /// <summary>
- /// A kliens felõl érkezõ új munkafolyamat indítása, amely a JobEngine submit metódusát hívja és jobStart paraméter alapján eldönti, hogy a munkafolyamat milyen módon kerüljön be a folyamatütemezõbe.
- /// </summary>
- /// <param name="createJobParameters"></param>
- /// <returns>Job</returns>
- public Job MasCreateJobPost (CreateJobParameters createJobParameters)
- {
-
- // verify the required parameter 'createJobParameters' is set
- if (createJobParameters == null) throw new ApiException(400, "Missing required parameter 'createJobParameters' when calling MasCreateJobPost");
-
-
- var path = "/mas/createJob";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(createJobParameters); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasCreateJobPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasCreateJobPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (Job) ApiClient.Deserialize(response.Content, typeof(Job), response.Headers);
- }
-
- /// <summary>
- /// Név alapján kitörli a Sablont.
- /// </summary>
- /// <param name="name"></param>
- /// <returns>bool?</returns>
- public bool? MasDeleteTemplatePost (string name)
- {
-
- // verify the required parameter 'name' is set
- if (name == null) throw new ApiException(400, "Missing required parameter 'name' when calling MasDeleteTemplatePost");
-
-
- var path = "/mas/deleteTemplate";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(name); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasDeleteTemplatePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasDeleteTemplatePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (bool?) ApiClient.Deserialize(response.Content, typeof(bool?), response.Headers);
- }
-
- /// <summary>
- /// Az ItemManager-tõl elkéri az adatbázisban eltárolt összes DomainCategory típusú entitást.
- /// </summary>
- /// <returns>List<DomainCategory></returns>
- public List<DomainCategory> MasGetAllDomainCategoryGet ()
- {
-
-
- var path = "/mas/getAllDomainCategory";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetAllDomainCategoryGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetAllDomainCategoryGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<DomainCategory>) ApiClient.Deserialize(response.Content, typeof(List<DomainCategory>), response.Headers);
- }
-
- /// <summary>
- /// Az ItemManager-tõl elkéri az adatbázisban eltárolt összes MetadataElement típusú entitást.
- /// </summary>
- /// <returns>List<MetadataElement></returns>
- public List<MetadataElement> MasGetAllMetadataElementGet ()
- {
-
-
- var path = "/mas/getAllMetadataElement";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetAllMetadataElementGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetAllMetadataElementGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<MetadataElement>) ApiClient.Deserialize(response.Content, typeof(List<MetadataElement>), response.Headers);
- }
-
- /// <summary>
- /// Az ItemManager-tõl elkéri az adatbázisban eltárolt összes MetadataType típusú entitást.
- /// </summary>
- /// <returns>List<MetadataType></returns>
- public List<MetadataType> MasGetAllMetadataTypeGet ()
- {
-
-
- var path = "/mas/getAllMetadataType";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetAllMetadataTypeGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetAllMetadataTypeGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<MetadataType>) ApiClient.Deserialize(response.Content, typeof(List<MetadataType>), response.Headers);
- }
-
- /// <summary>
- /// Fake hívás, így a webservice-en keresztül elérhetõ a Signal objektum.
- /// </summary>
- /// <returns>List<Signal></returns>
- public List<Signal> MasGetAllSignalGet ()
- {
-
-
- var path = "/mas/getAllSignal";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetAllSignalGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetAllSignalGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<Signal>) ApiClient.Deserialize(response.Content, typeof(List<Signal>), response.Headers);
- }
-
- /// <summary>
- /// Az ItemManager-tõl elkéri az adatbázisban eltárolt összes Store típusú entitást.
- /// </summary>
- /// <returns>List<Store></returns>
- public List<Store> MasGetAllStoreGet ()
- {
-
-
- var path = "/mas/getAllStore";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetAllStoreGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetAllStoreGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<Store>) ApiClient.Deserialize(response.Content, typeof(List<Store>), response.Headers);
- }
-
- /// <summary>
- /// Az ItemManager-tõl elkéri az adatbázisban eltárolt összes UserInfo típusú entitást.
- /// </summary>
- /// <returns>List<UserInfo></returns>
- public List<UserInfo> MasGetAllUserInfoGet ()
- {
-
-
- var path = "/mas/getAllUserInfo";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetAllUserInfoGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetAllUserInfoGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<UserInfo>) ApiClient.Deserialize(response.Content, typeof(List<UserInfo>), response.Headers);
- }
-
- /// <summary>
- /// Fake hívás.
- /// </summary>
- /// <returns>Domains</returns>
- public Domains MasGetDomainsGet ()
- {
-
-
- var path = "/mas/getDomains";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetDomainsGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetDomainsGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (Domains) ApiClient.Deserialize(response.Content, typeof(Domains), response.Headers);
- }
-
- /// <summary>
- /// Az ItemManager elkéri azokat a Domain-eket, melyek domainCategoryId-je és filtere egyenlõ filterId-val, illetve filter-el.
- /// </summary>
- /// <param name="getFilteredDomainByDisplayParameters"></param>
- /// <returns>List<Domain></returns>
- public List<Domain> MasGetFilteredDomainByDisplayPost (GetFilteredDomainByDisplayParameters getFilteredDomainByDisplayParameters)
- {
-
- // verify the required parameter 'getFilteredDomainByDisplayParameters' is set
- if (getFilteredDomainByDisplayParameters == null) throw new ApiException(400, "Missing required parameter 'getFilteredDomainByDisplayParameters' when calling MasGetFilteredDomainByDisplayPost");
-
-
- var path = "/mas/getFilteredDomainByDisplay";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(getFilteredDomainByDisplayParameters); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFilteredDomainByDisplayPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFilteredDomainByDisplayPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<Domain>) ApiClient.Deserialize(response.Content, typeof(List<Domain>), response.Headers);
- }
-
- /// <summary>
- /// Az ItemManager elkéri azokat a Domain-eket, melyek domainCategoryId-je egyenlõ filterId.
- /// </summary>
- /// <param name="filterId"></param>
- /// <returns>List<Domain></returns>
- public List<Domain> MasGetFilteredDomainPost (long? filterId)
- {
-
- // verify the required parameter 'filterId' is set
- if (filterId == null) throw new ApiException(400, "Missing required parameter 'filterId' when calling MasGetFilteredDomainPost");
-
-
- var path = "/mas/getFilteredDomain";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(filterId); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFilteredDomainPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFilteredDomainPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<Domain>) ApiClient.Deserialize(response.Content, typeof(List<Domain>), response.Headers);
- }
-
- /// <summary>
- /// filterId alapján elkéri a Foldereket az ItemManager-tõl.
- /// </summary>
- /// <param name="filterId"></param>
- /// <returns>List<Folder></returns>
- public List<Folder> MasGetFilteredFolderPost (long? filterId)
- {
-
- // verify the required parameter 'filterId' is set
- if (filterId == null) throw new ApiException(400, "Missing required parameter 'filterId' when calling MasGetFilteredFolderPost");
-
-
- var path = "/mas/getFilteredFolder";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(filterId); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFilteredFolderPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFilteredFolderPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<Folder>) ApiClient.Deserialize(response.Content, typeof(List<Folder>), response.Headers);
- }
-
- /// <summary>
- /// Elkéri az ItemManager-tõl az összes olyan Médiát, amelynek itemId-ja megegyezik a bemeneti paraméterként kapott filterId-val.
- /// </summary>
- /// <param name="filterId"></param>
- /// <returns>List<Media></returns>
- public List<Media> MasGetFilteredMediaPost (long? filterId)
- {
-
- // verify the required parameter 'filterId' is set
- if (filterId == null) throw new ApiException(400, "Missing required parameter 'filterId' when calling MasGetFilteredMediaPost");
-
-
- var path = "/mas/getFilteredMedia";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(filterId); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFilteredMediaPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFilteredMediaPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<Media>) ApiClient.Deserialize(response.Content, typeof(List<Media>), response.Headers);
- }
-
- /// <summary>
- /// ItemManager-tõl elkéri az összes olyan mentett vágólistát, amely name-el kezdõdik.
- /// </summary>
- /// <param name="getFilteredParameters"></param>
- /// <returns>List<Scene></returns>
- public List<Scene> MasGetFilteredScenePost (GetFilteredParameters getFilteredParameters)
- {
-
- // verify the required parameter 'getFilteredParameters' is set
- if (getFilteredParameters == null) throw new ApiException(400, "Missing required parameter 'getFilteredParameters' when calling MasGetFilteredScenePost");
-
-
- var path = "/mas/getFilteredScene";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(getFilteredParameters); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFilteredScenePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFilteredScenePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<Scene>) ApiClient.Deserialize(response.Content, typeof(List<Scene>), response.Headers);
- }
-
- /// <summary>
- /// ItemManager-tõl elkéri az összes olyan mentett keresést, amely filter-rel kezdõdik.
- /// </summary>
- /// <param name="getFilteredParameters"></param>
- /// <returns>List<SearchDefinition></returns>
- public List<SearchDefinition> MasGetFilteredSearchDefinitionPost (GetFilteredParameters getFilteredParameters)
- {
-
- // verify the required parameter 'getFilteredParameters' is set
- if (getFilteredParameters == null) throw new ApiException(400, "Missing required parameter 'getFilteredParameters' when calling MasGetFilteredSearchDefinitionPost");
-
-
- var path = "/mas/getFilteredSearchDefinition";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(getFilteredParameters); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFilteredSearchDefinitionPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFilteredSearchDefinitionPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<SearchDefinition>) ApiClient.Deserialize(response.Content, typeof(List<SearchDefinition>), response.Headers);
- }
-
- /// <summary>
- /// ItemManager-tõl elkéri az összes olyan mappát, amely childId-ja filterId-vel egyenlõ.
- /// </summary>
- /// <param name="filterId"></param>
- /// <returns>List<Item></returns>
- public List<Item> MasGetFoldersPost (long? filterId)
- {
-
- // verify the required parameter 'filterId' is set
- if (filterId == null) throw new ApiException(400, "Missing required parameter 'filterId' when calling MasGetFoldersPost");
-
-
- var path = "/mas/getFolders";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(filterId); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFoldersPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetFoldersPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<Item>) ApiClient.Deserialize(response.Content, typeof(List<Item>), response.Headers);
- }
-
- /// <summary>
- /// ItemManager-tõl elkéri a bemeneti paraméterként kapott id-vel rendelkezõ Item-et.
- /// </summary>
- /// <param name="id"></param>
- /// <returns>Item</returns>
- public Item MasGetItemPost (long? id)
- {
-
- // verify the required parameter 'id' is set
- if (id == null) throw new ApiException(400, "Missing required parameter 'id' when calling MasGetItemPost");
-
-
- var path = "/mas/getItem";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(id); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetItemPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetItemPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (Item) ApiClient.Deserialize(response.Content, typeof(Item), response.Headers);
- }
-
- /// <summary>
- /// ItemManager-tõl elkéri a bemeneti paraméterként kapott id-vel rendelkezõ ItemType-ot.
- /// </summary>
- /// <param name="id"></param>
- /// <returns>ItemType</returns>
- public ItemType MasGetItemTypePost (long? id)
- {
-
- // verify the required parameter 'id' is set
- if (id == null) throw new ApiException(400, "Missing required parameter 'id' when calling MasGetItemTypePost");
-
-
- var path = "/mas/getItemType";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(id); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetItemTypePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetItemTypePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (ItemType) ApiClient.Deserialize(response.Content, typeof(ItemType), response.Headers);
- }
-
- /// <summary>
- /// Típusleírók lekérdezése. Az adatmodell dinamikus, az anyag és verzió objektumok bõvítését szolgáló metaadatokat tartalmazza, kiegészítve az adatbázisban elõre definiált mezõk metaadat leíróival.
- /// </summary>
- /// <returns>List<ItemType></returns>
- public List<ItemType> MasGetItemTypesGet ()
- {
-
-
- var path = "/mas/getItemTypes";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetItemTypesGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetItemTypesGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<ItemType>) ApiClient.Deserialize(response.Content, typeof(List<ItemType>), response.Headers);
- }
-
- /// <summary>
- /// ItemManager-tõl elkéri a bemeneti paraméterként kapott jobId-vel rendelkezõ Job-ot.
- /// </summary>
- /// <param name="jobId"></param>
- /// <returns>Job</returns>
- public Job MasGetJobPost (long? jobId)
- {
-
- // verify the required parameter 'jobId' is set
- if (jobId == null) throw new ApiException(400, "Missing required parameter 'jobId' when calling MasGetJobPost");
-
-
- var path = "/mas/getJob";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(jobId); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetJobPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetJobPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (Job) ApiClient.Deserialize(response.Content, typeof(Job), response.Headers);
- }
-
- /// <summary>
- /// Visszaadja a rendszerben tárolt összes sablon-t és végrehajtó osztályok listáját egy JobTemplatesInfo osztályba csomagolva.
- /// </summary>
- /// <returns>JobTemplatesInfo</returns>
- public JobTemplatesInfo MasGetJobTemplatesInfoGet ()
- {
-
-
- var path = "/mas/getJobTemplatesInfo";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetJobTemplatesInfoGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetJobTemplatesInfoGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (JobTemplatesInfo) ApiClient.Deserialize(response.Content, typeof(JobTemplatesInfo), response.Headers);
- }
-
- /// <summary>
- /// Naplózási szint alapján visszaad egy napló listát.
- /// </summary>
- /// <param name="logLevel"></param>
- /// <returns>List<LogEvent></returns>
- public List<LogEvent> MasGetLogEventsPost (LogLevel logLevel)
- {
-
- // verify the required parameter 'logLevel' is set
- if (logLevel == null) throw new ApiException(400, "Missing required parameter 'logLevel' when calling MasGetLogEventsPost");
-
-
- var path = "/mas/getLogEvents";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(logLevel); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetLogEventsPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetLogEventsPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<LogEvent>) ApiClient.Deserialize(response.Content, typeof(List<LogEvent>), response.Headers);
- }
-
- /// <summary>
- /// ItemManager-tõl elkéri a bemeneti paraméterként kapott id-vel rendelkezõ Media-t.
- /// </summary>
- /// <param name="id"></param>
- /// <returns>Media</returns>
- public Media MasGetMediaPost (long? id)
- {
-
- // verify the required parameter 'id' is set
- if (id == null) throw new ApiException(400, "Missing required parameter 'id' when calling MasGetMediaPost");
-
-
- var path = "/mas/getMedia";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(id); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetMediaPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetMediaPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (Media) ApiClient.Deserialize(response.Content, typeof(Media), response.Headers);
- }
-
- /// <summary>
- /// Visszaadja a JobEngine getUserMessageQueues() lista méretét.
- /// </summary>
- /// <returns>int?</returns>
- public int? MasGetMessageCountGet ()
- {
-
-
- var path = "/mas/getMessageCount";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetMessageCountGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetMessageCountGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (int?) ApiClient.Deserialize(response.Content, typeof(int?), response.Headers);
- }
-
- /// <summary>
- /// Visszadja messageId alapján az a UserMessage-et, amely a JobEngine getUserMessageQueues() listájában van.
- /// </summary>
- /// <param name="messageId"></param>
- /// <returns>UserMessage</returns>
- public UserMessage MasGetMessagePost (long? messageId)
- {
-
- // verify the required parameter 'messageId' is set
- if (messageId == null) throw new ApiException(400, "Missing required parameter 'messageId' when calling MasGetMessagePost");
-
-
- var path = "/mas/getMessage";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(messageId); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetMessagePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetMessagePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (UserMessage) ApiClient.Deserialize(response.Content, typeof(UserMessage), response.Headers);
- }
-
- /// <summary>
- /// Visszaadja a JobEngine getUserMessageQueues()-ban lévõ UserMessage-ek listáját.
- /// </summary>
- /// <returns>List<UserMessage></returns>
- public List<UserMessage> MasGetMessagesGet ()
- {
-
-
- var path = "/mas/getMessages";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetMessagesGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetMessagesGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<UserMessage>) ApiClient.Deserialize(response.Content, typeof(List<UserMessage>), response.Headers);
- }
-
- /// <summary>
- /// fake hívás.
- /// </summary>
- /// <returns>MdType</returns>
- public MdType MasGetMetadataTypeGet ()
- {
-
-
- var path = "/mas/getMetadataType";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetMetadataTypeGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetMetadataTypeGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (MdType) ApiClient.Deserialize(response.Content, typeof(MdType), response.Headers);
- }
-
- /// <summary>
- /// A bemeneti paraméterként kapott storeUri-tól elkéri a hozzá tartozó remote file-okat.
- /// </summary>
- /// <param name="id"></param>
- /// <returns>RemoteFileResponse</returns>
- public RemoteFileResponse MasGetRemoteFilesPost (StoreUri id)
- {
-
- // verify the required parameter 'id' is set
- if (id == null) throw new ApiException(400, "Missing required parameter 'id' when calling MasGetRemoteFilesPost");
-
-
- var path = "/mas/getRemoteFiles";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(id); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetRemoteFilesPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetRemoteFilesPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (RemoteFileResponse) ApiClient.Deserialize(response.Content, typeof(RemoteFileResponse), response.Headers);
- }
-
- /// <summary>
- /// Az id azonosítóval rendelkezõ Scene objektumot kéri el az ItemManager-tõl.
- /// </summary>
- /// <param name="id"></param>
- /// <returns>Scene</returns>
- public Scene MasGetScenePost (long? id)
- {
-
- // verify the required parameter 'id' is set
- if (id == null) throw new ApiException(400, "Missing required parameter 'id' when calling MasGetScenePost");
-
-
- var path = "/mas/getScene";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(id); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetScenePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetScenePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (Scene) ApiClient.Deserialize(response.Content, typeof(Scene), response.Headers);
- }
-
- /// <summary>
- /// Az ItemManager-tõl elkéri a bemeneti paraméterben kapott azonosítóval rendelkezõ Mentett keresési feltételt.
- /// </summary>
- /// <param name="id"></param>
- /// <returns>SearchDefinition</returns>
- public SearchDefinition MasGetSearchDefinitionsPost (long? id)
- {
-
- // verify the required parameter 'id' is set
- if (id == null) throw new ApiException(400, "Missing required parameter 'id' when calling MasGetSearchDefinitionsPost");
-
-
- var path = "/mas/getSearchDefinitions";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(id); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetSearchDefinitionsPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetSearchDefinitionsPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (SearchDefinition) ApiClient.Deserialize(response.Content, typeof(SearchDefinition), response.Headers);
- }
-
- /// <summary>
- /// ItemManager-tõl elkéri az összes olyan Szkript-et, amely mediaId-je megyezik a bemeneti paraméterként kapott mediaId-vel.
- /// </summary>
- /// <param name="mediaId"></param>
- /// <returns>List<Shot></returns>
- public List<Shot> MasGetShotsPost (long? mediaId)
- {
-
- // verify the required parameter 'mediaId' is set
- if (mediaId == null) throw new ApiException(400, "Missing required parameter 'mediaId' when calling MasGetShotsPost");
-
-
- var path = "/mas/getShots";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(mediaId); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetShotsPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetShotsPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<Shot>) ApiClient.Deserialize(response.Content, typeof(List<Shot>), response.Headers);
- }
-
- /// <summary>
- /// Visszatér az illesztett transzkóder profil információkkal.
- /// </summary>
- /// <returns>List<TranscoderProfile></returns>
- public List<TranscoderProfile> MasGetTranscodeProfilesGet ()
- {
-
-
- var path = "/mas/getTranscodeProfiles";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetTranscodeProfilesGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetTranscodeProfilesGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<TranscoderProfile>) ApiClient.Deserialize(response.Content, typeof(List<TranscoderProfile>), response.Headers);
- }
-
- /// <summary>
- /// fake hívás
- /// </summary>
- /// <returns>List<UserRight></returns>
- public List<UserRight> MasGetUserRightGet ()
- {
-
-
- var path = "/mas/getUserRight";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetUserRightGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasGetUserRightGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<UserRight>) ApiClient.Deserialize(response.Content, typeof(List<UserRight>), response.Headers);
- }
-
- /// <summary>
- /// nincs implementálva
- /// </summary>
- /// <returns></returns>
- public void MasLogoutGet ()
- {
-
-
- var path = "/mas/logout";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasLogoutGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasLogoutGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return;
- }
-
- /// <summary>
- /// Szerializáláshoz beregisztrált objektum típusok, melyek object-ként mennének át a proxy-n.
- /// </summary>
- /// <returns>List<Object></returns>
- public List<Object> MasRegisterGet ()
- {
-
-
- var path = "/mas/register";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasRegisterGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasRegisterGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<Object>) ApiClient.Deserialize(response.Content, typeof(List<Object>), response.Headers);
- }
-
- /// <summary>
- /// Az osztály név és azonosító lista alapján az ItemManager-el eltávolítja az entitásokat az adatbázisból.
- /// </summary>
- /// <param name="removeParameters"></param>
- /// <returns>SystemResponse</returns>
- public SystemResponse MasRemoveAllPost (RemoveParameters removeParameters)
- {
-
- // verify the required parameter 'removeParameters' is set
- if (removeParameters == null) throw new ApiException(400, "Missing required parameter 'removeParameters' when calling MasRemoveAllPost");
-
-
- var path = "/mas/removeAll";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(removeParameters); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasRemoveAllPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasRemoveAllPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (SystemResponse) ApiClient.Deserialize(response.Content, typeof(SystemResponse), response.Headers);
- }
-
- /// <summary>
- /// Az osztály név és azonosító lista alapján az ItemManager-el eltávolítja az entitásokat az adatbázisból.
- /// </summary>
- /// <param name="removeParameters"></param>
- /// <returns>SystemResponse</returns>
- public SystemResponse MasRemovePost (RemoveParameters removeParameters)
- {
-
- // verify the required parameter 'removeParameters' is set
- if (removeParameters == null) throw new ApiException(400, "Missing required parameter 'removeParameters' when calling MasRemovePost");
-
-
- var path = "/mas/remove";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(removeParameters); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasRemovePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasRemovePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (SystemResponse) ApiClient.Deserialize(response.Content, typeof(SystemResponse), response.Headers);
- }
-
- /// <summary>
- /// Elhelyez egy UserReplyMessage típusú üzenetet a motor rendszerüzenet várakozási sorába.
- /// </summary>
- /// <param name="replyMessageParameters"></param>
- /// <returns></returns>
- public void MasReplyMessagePost (ReplyMessageParameters replyMessageParameters)
- {
-
- // verify the required parameter 'replyMessageParameters' is set
- if (replyMessageParameters == null) throw new ApiException(400, "Missing required parameter 'replyMessageParameters' when calling MasReplyMessagePost");
-
-
- var path = "/mas/replyMessage";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(replyMessageParameters); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasReplyMessagePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasReplyMessagePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return;
- }
-
- /// <summary>
- /// Munkafolyamat azonosító alapján egy új újraindítási kérelmet helyez el a motor rendszerüzenet várakozási sorába.
- /// </summary>
- /// <param name="jobId"></param>
- /// <returns></returns>
- public void MasRestartJobPost (long? jobId)
- {
-
- // verify the required parameter 'jobId' is set
- if (jobId == null) throw new ApiException(400, "Missing required parameter 'jobId' when calling MasRestartJobPost");
-
-
- var path = "/mas/restartJob";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(jobId); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasRestartJobPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasRestartJobPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return;
- }
-
- /// <summary>
- /// Munkafolyamat azonosító alapján egy új folytatási kérelmet helyez el a motor rendszerüzenet várakozási sorába.
- /// </summary>
- /// <param name="jobId"></param>
- /// <returns></returns>
- public void MasResumeJobPost (long? jobId)
- {
-
- // verify the required parameter 'jobId' is set
- if (jobId == null) throw new ApiException(400, "Missing required parameter 'jobId' when calling MasResumeJobPost");
-
-
- var path = "/mas/resumeJob";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(jobId); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasResumeJobPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasResumeJobPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return;
- }
-
- /// <summary>
- /// Egy új/létezõ lista kategóriát ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="domainCategory"></param>
- /// <returns>DomainCategoryResponse</returns>
- public DomainCategoryResponse MasSaveDomainCategoryPost (DomainCategory domainCategory)
- {
-
- // verify the required parameter 'domainCategory' is set
- if (domainCategory == null) throw new ApiException(400, "Missing required parameter 'domainCategory' when calling MasSaveDomainCategoryPost");
-
-
- var path = "/mas/saveDomainCategory";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(domainCategory); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveDomainCategoryPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveDomainCategoryPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (DomainCategoryResponse) ApiClient.Deserialize(response.Content, typeof(DomainCategoryResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ listát ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="domain"></param>
- /// <returns>DomainResponse</returns>
- public DomainResponse MasSaveDomainPost (Domain domain)
- {
-
- // verify the required parameter 'domain' is set
- if (domain == null) throw new ApiException(400, "Missing required parameter 'domain' when calling MasSaveDomainPost");
-
-
- var path = "/mas/saveDomain";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(domain); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveDomainPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveDomainPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (DomainResponse) ApiClient.Deserialize(response.Content, typeof(DomainResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ mappát ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="folder"></param>
- /// <returns>FolderResponse</returns>
- public FolderResponse MasSaveFolderPost (Folder folder)
- {
-
- // verify the required parameter 'folder' is set
- if (folder == null) throw new ApiException(400, "Missing required parameter 'folder' when calling MasSaveFolderPost");
-
-
- var path = "/mas/saveFolder";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(folder); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveFolderPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveFolderPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (FolderResponse) ApiClient.Deserialize(response.Content, typeof(FolderResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Anyagot ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="item"></param>
- /// <returns>ItemResponse</returns>
- public ItemResponse MasSaveItemPost (Item item)
- {
-
- // verify the required parameter 'item' is set
- if (item == null) throw new ApiException(400, "Missing required parameter 'item' when calling MasSaveItemPost");
-
-
- var path = "/mas/saveItem";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(item); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveItemPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveItemPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (ItemResponse) ApiClient.Deserialize(response.Content, typeof(ItemResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Anyag típust ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="itemType"></param>
- /// <returns>ItemTypeResponse</returns>
- public ItemTypeResponse MasSaveItemTypePost (ItemType itemType)
- {
-
- // verify the required parameter 'itemType' is set
- if (itemType == null) throw new ApiException(400, "Missing required parameter 'itemType' when calling MasSaveItemTypePost");
-
-
- var path = "/mas/saveItemType";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(itemType); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveItemTypePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveItemTypePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (ItemTypeResponse) ApiClient.Deserialize(response.Content, typeof(ItemTypeResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Kópiát ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="mediaFile"></param>
- /// <returns>MediaFileResponse</returns>
- public MediaFileResponse MasSaveMediaFilePost (MediaFile mediaFile)
- {
-
- // verify the required parameter 'mediaFile' is set
- if (mediaFile == null) throw new ApiException(400, "Missing required parameter 'mediaFile' when calling MasSaveMediaFilePost");
-
-
- var path = "/mas/saveMediaFile";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(mediaFile); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveMediaFilePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveMediaFilePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (MediaFileResponse) ApiClient.Deserialize(response.Content, typeof(MediaFileResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Verziót ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="media"></param>
- /// <returns>MediaResponse</returns>
- public MediaResponse MasSaveMediaPost (Media media)
- {
-
- // verify the required parameter 'media' is set
- if (media == null) throw new ApiException(400, "Missing required parameter 'media' when calling MasSaveMediaPost");
-
-
- var path = "/mas/saveMedia";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(media); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveMediaPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveMediaPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (MediaResponse) ApiClient.Deserialize(response.Content, typeof(MediaResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Meta adat elemet ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="metadataElement"></param>
- /// <returns>MetadataElementResponse</returns>
- public MetadataElementResponse MasSaveMetadataElementPost (MetadataElement metadataElement)
- {
-
- // verify the required parameter 'metadataElement' is set
- if (metadataElement == null) throw new ApiException(400, "Missing required parameter 'metadataElement' when calling MasSaveMetadataElementPost");
-
-
- var path = "/mas/saveMetadataElement";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(metadataElement); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveMetadataElementPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveMetadataElementPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (MetadataElementResponse) ApiClient.Deserialize(response.Content, typeof(MetadataElementResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Meta adatot ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="metadata"></param>
- /// <returns>MetadataResponse</returns>
- public MetadataResponse MasSaveMetadataPost (Metadata metadata)
- {
-
- // verify the required parameter 'metadata' is set
- if (metadata == null) throw new ApiException(400, "Missing required parameter 'metadata' when calling MasSaveMetadataPost");
-
-
- var path = "/mas/saveMetadata";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(metadata); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveMetadataPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveMetadataPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (MetadataResponse) ApiClient.Deserialize(response.Content, typeof(MetadataResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Meta adat típust ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="metadataType"></param>
- /// <returns>MetadataTypeResponse</returns>
- public MetadataTypeResponse MasSaveMetadataTypePost (MetadataType metadataType)
- {
-
- // verify the required parameter 'metadataType' is set
- if (metadataType == null) throw new ApiException(400, "Missing required parameter 'metadataType' when calling MasSaveMetadataTypePost");
-
-
- var path = "/mas/saveMetadataType";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(metadataType); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveMetadataTypePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveMetadataTypePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (MetadataTypeResponse) ApiClient.Deserialize(response.Content, typeof(MetadataTypeResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Vágólista elemet ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="sceneContent"></param>
- /// <returns>SceneContentResponse</returns>
- public SceneContentResponse MasSaveSceneContentPost (SceneContent sceneContent)
- {
-
- // verify the required parameter 'sceneContent' is set
- if (sceneContent == null) throw new ApiException(400, "Missing required parameter 'sceneContent' when calling MasSaveSceneContentPost");
-
-
- var path = "/mas/saveSceneContent";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(sceneContent); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveSceneContentPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveSceneContentPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (SceneContentResponse) ApiClient.Deserialize(response.Content, typeof(SceneContentResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Vágólistát ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="scene"></param>
- /// <returns>SceneResponse</returns>
- public SceneResponse MasSaveScenePost (Scene scene)
- {
-
- // verify the required parameter 'scene' is set
- if (scene == null) throw new ApiException(400, "Missing required parameter 'scene' when calling MasSaveScenePost");
-
-
- var path = "/mas/saveScene";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(scene); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveScenePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveScenePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (SceneResponse) ApiClient.Deserialize(response.Content, typeof(SceneResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Keresést ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="searchDefinition"></param>
- /// <returns>SearchDefinitionResponse</returns>
- public SearchDefinitionResponse MasSaveSearchDefinitionPost (SearchDefinition searchDefinition)
- {
-
- // verify the required parameter 'searchDefinition' is set
- if (searchDefinition == null) throw new ApiException(400, "Missing required parameter 'searchDefinition' when calling MasSaveSearchDefinitionPost");
-
-
- var path = "/mas/saveSearchDefinition";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(searchDefinition); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveSearchDefinitionPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveSearchDefinitionPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (SearchDefinitionResponse) ApiClient.Deserialize(response.Content, typeof(SearchDefinitionResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Szkriptet ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="shot"></param>
- /// <returns>ShotResponse</returns>
- public ShotResponse MasSaveShotPost (Shot shot)
- {
-
- // verify the required parameter 'shot' is set
- if (shot == null) throw new ApiException(400, "Missing required parameter 'shot' when calling MasSaveShotPost");
-
-
- var path = "/mas/saveShot";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(shot); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveShotPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveShotPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (ShotResponse) ApiClient.Deserialize(response.Content, typeof(ShotResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Tárolót ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="store"></param>
- /// <returns>StoreResponse</returns>
- public StoreResponse MasSaveStorePost (Store store)
- {
-
- // verify the required parameter 'store' is set
- if (store == null) throw new ApiException(400, "Missing required parameter 'store' when calling MasSaveStorePost");
-
-
- var path = "/mas/saveStore";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(store); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveStorePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveStorePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (StoreResponse) ApiClient.Deserialize(response.Content, typeof(StoreResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Tároló uri-t ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="storeUri"></param>
- /// <returns>StoreUriResponse</returns>
- public StoreUriResponse MasSaveStoreUriPost (StoreUri storeUri)
- {
-
- // verify the required parameter 'storeUri' is set
- if (storeUri == null) throw new ApiException(400, "Missing required parameter 'storeUri' when calling MasSaveStoreUriPost");
-
-
- var path = "/mas/saveStoreUri";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(storeUri); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveStoreUriPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveStoreUriPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (StoreUriResponse) ApiClient.Deserialize(response.Content, typeof(StoreUriResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új Sablont tölt be a folyamatkezelõ motor program betöltõjébe.
- /// </summary>
- /// <param name="template"></param>
- /// <returns>TemplateResponse</returns>
- public TemplateResponse MasSaveTemplatePost (Template template)
- {
-
- // verify the required parameter 'template' is set
- if (template == null) throw new ApiException(400, "Missing required parameter 'template' when calling MasSaveTemplatePost");
-
-
- var path = "/mas/saveTemplate";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(template); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveTemplatePost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveTemplatePost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (TemplateResponse) ApiClient.Deserialize(response.Content, typeof(TemplateResponse), response.Headers);
- }
-
- /// <summary>
- /// Egy új/létezõ Felhasználót ment el/módosít az adatbázisba.
- /// </summary>
- /// <param name="userInfo"></param>
- /// <returns>UserInfoResponse</returns>
- public UserInfoResponse MasSaveUserInfoPost (UserInfo userInfo)
- {
-
- // verify the required parameter 'userInfo' is set
- if (userInfo == null) throw new ApiException(400, "Missing required parameter 'userInfo' when calling MasSaveUserInfoPost");
-
-
- var path = "/mas/saveUserInfo";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(userInfo); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveUserInfoPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSaveUserInfoPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (UserInfoResponse) ApiClient.Deserialize(response.Content, typeof(UserInfoResponse), response.Headers);
- }
-
- /// <summary>
- /// Anyagok keresése. A keresés elsõ futtatásakor csak az elsõ SearchResult tartalmaz anyagokat, a találati lista elsõ oldalát, cím szerint rendezetten. Újbóli futtatás esetén a paraméter megjelenítési információinak módosításával változtatható az anyagok listája.
- /// </summary>
- /// <param name="queryObject"></param>
- /// <returns>List<SearchResult></returns>
- public List<SearchResult> MasSearchItemPost (QueryObject queryObject)
- {
-
- // verify the required parameter 'queryObject' is set
- if (queryObject == null) throw new ApiException(400, "Missing required parameter 'queryObject' when calling MasSearchItemPost");
-
-
- var path = "/mas/searchItem";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(queryObject); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSearchItemPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSearchItemPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<SearchResult>) ApiClient.Deserialize(response.Content, typeof(List<SearchResult>), response.Headers);
- }
-
- /// <summary>
- /// Egy QueryObject paraméter alapján elkéri az ItemManager-tõl a paraméterben tárolt szûrési feltételeknek megfelelõ Job-ok listáját.
- /// </summary>
- /// <param name="parameter"></param>
- /// <returns>List<Job></returns>
- public List<Job> MasSearchJobsPost (QueryObject parameter)
- {
-
- // verify the required parameter 'parameter' is set
- if (parameter == null) throw new ApiException(400, "Missing required parameter 'parameter' when calling MasSearchJobsPost");
-
-
- var path = "/mas/searchJobs";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(parameter); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSearchJobsPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSearchJobsPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return (List<Job>) ApiClient.Deserialize(response.Content, typeof(List<Job>), response.Headers);
- }
-
- /// <summary>
- /// Munkafolyamat motor leállítása.
- /// </summary>
- /// <returns></returns>
- public void MasShutdownGet ()
- {
-
-
- var path = "/mas/shutdown";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasShutdownGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasShutdownGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return;
- }
-
- /// <summary>
- /// Munkafolyamat motor elindítása.
- /// </summary>
- /// <returns></returns>
- public void MasStartupGet ()
- {
-
-
- var path = "/mas/startup";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasStartupGet: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasStartupGet: " + response.ErrorMessage, response.ErrorMessage);
-
- return;
- }
-
- /// <summary>
- /// Munkafolyamat azonosító alapján egy új felfüggesztési kérelmet helyez el a motor rendszerüzenet várakozási sorába.
- /// </summary>
- /// <param name="jobId"></param>
- /// <returns></returns>
- public void MasSuspendJobPost (long? jobId)
- {
-
- // verify the required parameter 'jobId' is set
- if (jobId == null) throw new ApiException(400, "Missing required parameter 'jobId' when calling MasSuspendJobPost");
-
-
- var path = "/mas/suspendJob";
- path = path.Replace("{format}", "json");
-
- var queryParams = new Dictionary<String, String>();
- var headerParams = new Dictionary<String, String>();
- var formParams = new Dictionary<String, String>();
- var fileParams = new Dictionary<String, FileParameter>();
- String postBody = null;
-
- postBody = ApiClient.Serialize(jobId); // http body (model) parameter
-
- // authentication setting, if any
- String[] authSettings = new String[] { "api_key" };
-
- // make the HTTP request
- IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
-
- if (((int)response.StatusCode) >= 400)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSuspendJobPost: " + response.Content, response.Content);
- else if (((int)response.StatusCode) == 0)
- throw new ApiException ((int)response.StatusCode, "Error calling MasSuspendJobPost: " + response.ErrorMessage, response.ErrorMessage);
-
- return;
- }
-
- }
-}
+++ /dev/null
-using System;\r
-using System.Collections.Generic;\r
-using System.Globalization;\r
-using System.Text.RegularExpressions;\r
-using System.IO;\r
-using System.Web;\r
-using System.Linq;\r
-using System.Net;\r
-using System.Text;\r
-using Newtonsoft.Json;\r
-using RestSharp;\r
-using RestSharp.Extensions;\r
-using RestSharp.Extensions.MonoHttp;\r
-\r
-namespace IO.Swagger.Client {\r
- /// <summary>\r
- /// API client is mainly responible for making the HTTP call to the API backend.\r
- /// </summary>\r
- public class ApiClient {\r
- private readonly Dictionary<String, String> _defaultHeaderMap = new Dictionary<String, String>();\r
-\r
- /// <summary>\r
- /// Initializes a new instance of the <see cref="ApiClient" /> class.\r
- /// </summary>\r
- /// <param name="basePath">The base path.</param>\r
- public ApiClient(String basePath = "https://virtserver.swaggerhub.com/laszlo.eros/petstoremas/1.0.0") {\r
- BasePath = basePath;\r
- RestClient = new RestClient(BasePath);\r
- }\r
-\r
- /// <summary>\r
- /// Gets or sets the base path.\r
- /// </summary>\r
- /// <value>The base path</value>\r
- public string BasePath { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or sets the RestClient.\r
- /// </summary>\r
- /// <value>An instance of the RestClient</value>\r
- public RestClient RestClient { get; set; }\r
-\r
- /// <summary>\r
- /// Gets the default header.\r
- /// </summary>\r
- public Dictionary<String, String> DefaultHeader {\r
- get { return _defaultHeaderMap; }\r
- }\r
-\r
- /// <summary>\r
- /// Makes the HTTP request (Sync).\r
- /// </summary>\r
- /// <param name="path">URL path.</param>\r
- /// <param name="method">HTTP method.</param>\r
- /// <param name="queryParams">Query parameters.</param>\r
- /// <param name="postBody">HTTP body (POST request).</param>\r
- /// <param name="headerParams">Header parameters.</param>\r
- /// <param name="formParams">Form parameters.</param>\r
- /// <param name="fileParams">File parameters.</param>\r
- /// <param name="authSettings">Authentication settings.</param>\r
- /// <returns>Object</returns>\r
- public Object CallApi(String path, RestSharp.Method method, Dictionary<String, String> queryParams, String postBody,\r
- Dictionary<String, String> headerParams, Dictionary<String, String> formParams,\r
- Dictionary<String, FileParameter> fileParams, String[] authSettings) {\r
-\r
- var request = new RestRequest(path, method);\r
-\r
- UpdateParamsForAuth(queryParams, headerParams, authSettings);\r
-\r
- // add default header, if any\r
- foreach (var defaultHeader in _defaultHeaderMap)\r
- request.AddHeader(defaultHeader.Key, defaultHeader.Value);\r
-\r
- // add header parameter, if any\r
- foreach (var param in headerParams)\r
- request.AddHeader(param.Key, param.Value);\r
-\r
- // add query parameter, if any\r
- foreach (var param in queryParams)\r
- request.AddParameter(param.Key, param.Value, ParameterType.GetOrPost);\r
-\r
- // add form parameter, if any\r
- foreach (var param in formParams)\r
- request.AddParameter(param.Key, param.Value, ParameterType.GetOrPost);\r
-\r
- // add file parameter, if any\r
- foreach (var param in fileParams)\r
- request.AddFile(param.Value.Name, param.Value.Writer, param.Value.FileName, param.Value.ContentType);\r
-\r
- if (postBody != null) // http body (model) parameter\r
- request.AddParameter("application/json", postBody, ParameterType.RequestBody);\r
-\r
- return (Object)RestClient.Execute(request);\r
-\r
- }\r
-\r
- /// <summary>\r
- /// Add default header.\r
- /// </summary>\r
- /// <param name="key">Header field name.</param>\r
- /// <param name="value">Header field value.</param>\r
- /// <returns></returns>\r
- public void AddDefaultHeader(string key, string value) {\r
- _defaultHeaderMap.Add(key, value);\r
- }\r
-\r
- /// <summary>\r
- /// Escape string (url-encoded).\r
- /// </summary>\r
- /// <param name="str">String to be escaped.</param>\r
- /// <returns>Escaped string.</returns>\r
- public string EscapeString(string str) {\r
- return HttpUtility.UrlEncode(str);\r
- }\r
-\r
- /// <summary>\r
- /// Create FileParameter based on Stream.\r
- /// </summary>\r
- /// <param name="name">Parameter name.</param>\r
- /// <param name="stream">Input stream.</param>\r
- /// <returns>FileParameter.</returns>\r
- public FileParameter ParameterToFile(string name, Stream stream) {\r
- if (stream is FileStream)\r
- return FileParameter.Create(name, stream.ReadAsBytes(), Path.GetFileName(((FileStream)stream).Name));\r
- else\r
- return FileParameter.Create(name, stream.ReadAsBytes(), "no_file_name_provided");\r
- }\r
-\r
- /// <summary>\r
- /// If parameter is DateTime, output in a formatted string (default ISO 8601), customizable with Configuration.DateTime.\r
- /// If parameter is a list of string, join the list with ",".\r
- /// Otherwise just return the string.\r
- /// </summary>\r
- /// <param name="obj">The parameter (header, path, query, form).</param>\r
- /// <returns>Formatted string.</returns>\r
- public string ParameterToString(object obj) {\r
- if (obj is DateTime)\r
- // Return a formatted date string - Can be customized with Configuration.DateTimeFormat\r
- // Defaults to an ISO 8601, using the known as a Round-trip date/time pattern ("o")\r
- // https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx#Anchor_8\r
- // For example: 2009-06-15T13:45:30.0000000\r
- return ((DateTime)obj).ToString(Configuration.DateTimeFormat);\r
- else if (obj is List<string>)\r
- return String.Join(",", (obj as List<string>).ToArray());\r
- else\r
- return Convert.ToString(obj);\r
- }\r
-\r
- /// <summary>\r
- /// Deserialize the JSON string into a proper object.\r
- /// </summary>\r
- /// <param name="content">HTTP body (e.g. string, JSON).</param>\r
- /// <param name="type">Object type.</param>\r
- /// <param name="headers">HTTP headers.</param>\r
- /// <returns>Object representation of the JSON string.</returns>\r
- public object Deserialize(string content, Type type, IList<Parameter> headers = null) {\r
- if (type == typeof(Object)) // return an object\r
- {\r
- return content;\r
- }\r
-\r
- if (type == typeof(Stream)) {\r
- var filePath = String.IsNullOrEmpty(Configuration.TempFolderPath)\r
- ? Path.GetTempPath()\r
- : Configuration.TempFolderPath;\r
-\r
- var fileName = filePath + Guid.NewGuid();\r
- if (headers != null) {\r
- var regex = new Regex(@"Content-Disposition:.*filename=['""]?([^'""\s]+)['""]?$");\r
- var match = regex.Match(headers.ToString());\r
- if (match.Success)\r
- fileName = filePath + match.Value.Replace("\"", "").Replace("'", "");\r
- }\r
- File.WriteAllText(fileName, content);\r
- return new FileStream(fileName, FileMode.Open);\r
-\r
- }\r
-\r
- if (type.Name.StartsWith("System.Nullable`1[[System.DateTime")) // return a datetime object\r
- {\r
- return DateTime.Parse(content, null, System.Globalization.DateTimeStyles.RoundtripKind);\r
- }\r
-\r
- if (type == typeof(String) || type.Name.StartsWith("System.Nullable")) // return primitive type\r
- {\r
- return ConvertType(content, type);\r
- }\r
-\r
- // at this point, it must be a model (json)\r
- try {\r
- return JsonConvert.DeserializeObject(content, type);\r
- }\r
- catch (IOException e) {\r
- throw new ApiException(500, e.Message);\r
- }\r
- }\r
-\r
- /// <summary>\r
- /// Serialize an object into JSON string.\r
- /// </summary>\r
- /// <param name="obj">Object.</param>\r
- /// <returns>JSON string.</returns>\r
- public string Serialize(object obj) {\r
- try {\r
- return obj != null ? JsonConvert.SerializeObject(obj) : null;\r
- }\r
- catch (Exception e) {\r
- throw new ApiException(500, e.Message);\r
- }\r
- }\r
-\r
- /// <summary>\r
- /// Get the API key with prefix.\r
- /// </summary>\r
- /// <param name="apiKeyIdentifier">API key identifier (authentication scheme).</param>\r
- /// <returns>API key with prefix.</returns>\r
- public string GetApiKeyWithPrefix(string apiKeyIdentifier) {\r
- var apiKeyValue = "";\r
- Configuration.ApiKey.TryGetValue(apiKeyIdentifier, out apiKeyValue);\r
- var apiKeyPrefix = "";\r
- if (Configuration.ApiKeyPrefix.TryGetValue(apiKeyIdentifier, out apiKeyPrefix))\r
- return apiKeyPrefix + " " + apiKeyValue;\r
- else\r
- return apiKeyValue;\r
- }\r
-\r
- /// <summary>\r
- /// Update parameters based on authentication.\r
- /// </summary>\r
- /// <param name="queryParams">Query parameters.</param>\r
- /// <param name="headerParams">Header parameters.</param>\r
- /// <param name="authSettings">Authentication settings.</param>\r
- public void UpdateParamsForAuth(Dictionary<String, String> queryParams, Dictionary<String, String> headerParams, string[] authSettings) {\r
- if (authSettings == null || authSettings.Length == 0)\r
- return;\r
-\r
- foreach (string auth in authSettings) {\r
- // determine which one to use\r
- switch (auth) {\r
- case "api_key":\r
- headerParams["api_key"] = GetApiKeyWithPrefix("api_key");\r
-\r
- break;\r
- default:\r
- //TODO show warning about security definition not found\r
- break;\r
- }\r
- }\r
- }\r
-\r
- /// <summary>\r
- /// Encode string in base64 format.\r
- /// </summary>\r
- /// <param name="text">String to be encoded.</param>\r
- /// <returns>Encoded string.</returns>\r
- public static string Base64Encode(string text) {\r
- var textByte = System.Text.Encoding.UTF8.GetBytes(text);\r
- return System.Convert.ToBase64String(textByte);\r
- }\r
-\r
- /// <summary>\r
- /// Dynamically cast the object into target type.\r
- /// Ref: http://stackoverflow.com/questions/4925718/c-dynamic-runtime-cast\r
- /// </summary>\r
- /// <param name="source">Object to be casted</param>\r
- /// <param name="dest">Target type</param>\r
- /// <returns>Casted object</returns>\r
- public static Object ConvertType(Object source, Type dest) {\r
- return Convert.ChangeType(source, dest);\r
- }\r
-\r
- }\r
-}
\ No newline at end of file
+++ /dev/null
-using System;
-
-namespace IO.Swagger.Client {
- /// <summary>
- /// API Exception
- /// </summary>
- public class ApiException : Exception {
- /// <summary>
- /// Gets or sets the error code (HTTP status code)
- /// </summary>
- /// <value>The error code (HTTP status code).</value>
- public int ErrorCode { get; set; }
-
- /// <summary>
- /// Gets or sets the error content (body json object)
- /// </summary>
- /// <value>The error content (Http response body).</value>
- public Object ErrorContent { get; private set; }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="ApiException"/> class.
- /// </summary>
- public ApiException() {}
-
- /// <summary>
- /// Initializes a new instance of the <see cref="ApiException"/> class.
- /// </summary>
- /// <param name="errorCode">HTTP status code.</param>
- /// <param name="message">Error message.</param>
- public ApiException(int errorCode, string message) : base(message) {
- this.ErrorCode = errorCode;
- }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="ApiException"/> class.
- /// </summary>
- /// <param name="errorCode">HTTP status code.</param>
- /// <param name="message">Error message.</param>
- /// <param name="errorContent">Error content.</param>
- public ApiException(int errorCode, string message, Object errorContent = null) : base(message) {
- this.ErrorCode = errorCode;
- this.ErrorContent = errorContent;
- }
-
- }
-
-}
+++ /dev/null
-using System;\r
-using System.Reflection;\r
-using System.Collections.Generic;\r
-using System.IO;\r
-using System.Linq;\r
-using System.Text;\r
-\r
-namespace IO.Swagger.Client\r
-{\r
- /// <summary>\r
- /// Represents a set of configuration settings\r
- /// </summary>\r
- public class Configuration\r
- {\r
- \r
- /// <summary>\r
- /// Version of the package.\r
- /// </summary>\r
- /// <value>Version of the package.</value>\r
- public const string Version = "1.0.0";\r
- \r
- /// <summary>\r
- /// Gets or sets the default API client for making HTTP calls.\r
- /// </summary>\r
- /// <value>The API client.</value>\r
- public static ApiClient DefaultApiClient = new ApiClient();\r
- \r
- /// <summary>\r
- /// Gets or sets the username (HTTP basic authentication).\r
- /// </summary>\r
- /// <value>The username.</value>\r
- public static String Username { get; set; }\r
-\r
- public static string BasePath { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or sets the password (HTTP basic authentication).\r
- /// </summary>\r
- /// <value>The password.</value>\r
- public static String Password { get; set; }\r
- \r
- /// <summary>\r
- /// Gets or sets the API key based on the authentication name.\r
- /// </summary>\r
- /// <value>The API key.</value>\r
- public static Dictionary<String, String> ApiKey = new Dictionary<String, String>();\r
- \r
- /// <summary>\r
- /// Gets or sets the prefix (e.g. Token) of the API key based on the authentication name.\r
- /// </summary>\r
- /// <value>The prefix of the API key.</value>\r
- public static Dictionary<String, String> ApiKeyPrefix = new Dictionary<String, String>();\r
- \r
- private static string _tempFolderPath = Path.GetTempPath();\r
- \r
- /// <summary>\r
- /// Gets or sets the temporary folder path to store the files downloaded from the server.\r
- /// </summary>\r
- /// <value>Folder path.</value>\r
- public static String TempFolderPath\r
- {\r
- get { return _tempFolderPath; }\r
- \r
- set \r
- {\r
- if (String.IsNullOrEmpty(value))\r
- {\r
- _tempFolderPath = value;\r
- return;\r
- }\r
- \r
- // create the directory if it does not exist\r
- if (!Directory.Exists(value)) \r
- Directory.CreateDirectory(value);\r
- \r
- // check if the path contains directory separator at the end\r
- if (value[value.Length - 1] == Path.DirectorySeparatorChar)\r
- _tempFolderPath = value;\r
- else\r
- _tempFolderPath = value + Path.DirectorySeparatorChar;\r
- }\r
- }\r
-\r
- private const string ISO8601_DATETIME_FORMAT = "o";\r
- private static string _dateTimeFormat = ISO8601_DATETIME_FORMAT;\r
-\r
- /// <summary>\r
- /// Gets or sets the the date time format used when serializing in the ApiClient\r
- /// By default, it's set to ISO 8601 - "o", for others see:\r
- /// https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx\r
- /// and https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx\r
- /// No validation is done to ensure that the string you're providing is valid\r
- /// </summary>\r
- /// <value>The DateTimeFormat string</value>\r
- public static String DateTimeFormat\r
- {\r
- get\r
- {\r
- return _dateTimeFormat;\r
- }\r
- set\r
- {\r
- if (string.IsNullOrEmpty(value))\r
- {\r
- // Never allow a blank or null string, go back to the default\r
- _dateTimeFormat = ISO8601_DATETIME_FORMAT;\r
- return;\r
- }\r
-\r
- // Caution, no validation when you choose date time format other than ISO 8601\r
- // Take a look at the above links\r
- _dateTimeFormat = value;\r
- }\r
- }\r
-\r
- /// <summary>\r
- /// Returns a string with essential information for debugging.\r
- /// </summary>\r
- public static String ToDebugReport()\r
- {\r
- String report = "C# SDK (IO.Swagger) Debug Report:\n";\r
- report += " OS: " + Environment.OSVersion + "\n";\r
- report += " .NET Framework Version: " + Assembly\r
- .GetExecutingAssembly()\r
- .GetReferencedAssemblies()\r
- .Where(x => x.Name == "System.Core").First().Version.ToString() + "\n";\r
- report += " Version of the API: 1.0.0\n";\r
- report += " SDK Package Version: 1.0.0\n";\r
- \r
- return report;\r
- }\r
- }\r
-}\r
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class AtomicLong {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class AtomicLong {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class BaseType {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class BaseType {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class BreakType {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class BreakType {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class CreateJobParameters {
- /// <summary>
- /// Gets or Sets JobTemplate
- /// </summary>
- [DataMember(Name="jobTemplate", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "jobTemplate")]
- public string JobTemplate { get; set; }
-
- /// <summary>
- /// Gets or Sets JobName
- /// </summary>
- [DataMember(Name="jobName", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "jobName")]
- public string JobName { get; set; }
-
- /// <summary>
- /// Gets or Sets Parameters
- /// </summary>
- [DataMember(Name="parameters", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "parameters")]
- public List<MapStringObjectElement> Parameters { get; set; }
-
- /// <summary>
- /// Gets or Sets JobStart
- /// </summary>
- [DataMember(Name="jobStart", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "jobStart")]
- public JobStart JobStart { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class CreateJobParameters {\n");
- sb.Append(" JobTemplate: ").Append(JobTemplate).Append("\n");
- sb.Append(" JobName: ").Append(JobName).Append("\n");
- sb.Append(" Parameters: ").Append(Parameters).Append("\n");
- sb.Append(" JobStart: ").Append(JobStart).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class DeclarationType {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class DeclarationType {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class DeliveryMethod {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class DeliveryMethod {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class Domain {
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets DomainCategoryId
- /// </summary>
- [DataMember(Name="domainCategoryId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "domainCategoryId")]
- public long? DomainCategoryId { get; set; }
-
- /// <summary>
- /// Gets or Sets Value
- /// </summary>
- [DataMember(Name="value", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "value")]
- public long? Value { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class Domain {\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append(" DomainCategoryId: ").Append(DomainCategoryId).Append("\n");
- sb.Append(" Value: ").Append(Value).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class DomainCategory : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Domains
- /// </summary>
- [DataMember(Name="domains", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "domains")]
- public List<Domain> Domains { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class DomainCategory {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Domains: ").Append(Domains).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class DomainCategoryResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class DomainCategoryResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class DomainResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class DomainResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class Domains {
- /// <summary>
- /// Gets or Sets Values
- /// </summary>
- [DataMember(Name="values", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "values")]
- public List<Domain> Values { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class Domains {\n");
- sb.Append(" Values: ").Append(Values).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class DynamicAttributes : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets ItemType
- /// </summary>
- [DataMember(Name="itemType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "itemType")]
- public ItemType ItemType { get; set; }
-
- /// <summary>
- /// Gets or Sets ItemTypeId
- /// </summary>
- [DataMember(Name="itemTypeId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "itemTypeId")]
- public long? ItemTypeId { get; set; }
-
- /// <summary>
- /// Gets or Sets Loaded
- /// </summary>
- [DataMember(Name="loaded", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "loaded")]
- public bool? Loaded { get; set; }
-
- /// <summary>
- /// Gets or Sets Attributes
- /// </summary>
- [DataMember(Name="attributes", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "attributes")]
- public List<MapStringObjectElement> Attributes { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class DynamicAttributes {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" ItemType: ").Append(ItemType).Append("\n");
- sb.Append(" ItemTypeId: ").Append(ItemTypeId).Append("\n");
- sb.Append(" Loaded: ").Append(Loaded).Append("\n");
- sb.Append(" Attributes: ").Append(Attributes).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class EntityBase {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class FileType : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets AudioCodec
- /// </summary>
- [DataMember(Name="audioCodec", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "audioCodec")]
- public string AudioCodec { get; set; }
-
- /// <summary>
- /// Gets or Sets Description
- /// </summary>
- [DataMember(Name="description", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "description")]
- public string Description { get; set; }
-
- /// <summary>
- /// Gets or Sets Framerate
- /// </summary>
- [DataMember(Name="framerate", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "framerate")]
- public float? Framerate { get; set; }
-
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets VideoCodec
- /// </summary>
- [DataMember(Name="videoCodec", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "videoCodec")]
- public string VideoCodec { get; set; }
-
- /// <summary>
- /// Gets or Sets VideoTrack
- /// </summary>
- [DataMember(Name="videoTrack", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "videoTrack")]
- public int? VideoTrack { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class FileType {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" AudioCodec: ").Append(AudioCodec).Append("\n");
- sb.Append(" Description: ").Append(Description).Append("\n");
- sb.Append(" Framerate: ").Append(Framerate).Append("\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append(" VideoCodec: ").Append(VideoCodec).Append("\n");
- sb.Append(" VideoTrack: ").Append(VideoTrack).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class FilterLogic {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class FilterLogic {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class FilterValueLogic {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class FilterValueLogic {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class Folder : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets ParentId
- /// </summary>
- [DataMember(Name="parentId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "parentId")]
- public long? ParentId { get; set; }
-
- /// <summary>
- /// Gets or Sets ChildId
- /// </summary>
- [DataMember(Name="childId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "childId")]
- public long? ChildId { get; set; }
-
- /// <summary>
- /// Gets or Sets Parent
- /// </summary>
- [DataMember(Name="parent", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "parent")]
- public Item Parent { get; set; }
-
- /// <summary>
- /// Gets or Sets Child
- /// </summary>
- [DataMember(Name="child", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "child")]
- public Item Child { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class Folder {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" ParentId: ").Append(ParentId).Append("\n");
- sb.Append(" ChildId: ").Append(ChildId).Append("\n");
- sb.Append(" Parent: ").Append(Parent).Append("\n");
- sb.Append(" Child: ").Append(Child).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class FolderResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class FolderResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class GetFilteredDomainByDisplayParameters {
- /// <summary>
- /// Gets or Sets FilterId
- /// </summary>
- [DataMember(Name="filterId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "filterId")]
- public long? FilterId { get; set; }
-
- /// <summary>
- /// Gets or Sets Filter
- /// </summary>
- [DataMember(Name="filter", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "filter")]
- public string Filter { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class GetFilteredDomainByDisplayParameters {\n");
- sb.Append(" FilterId: ").Append(FilterId).Append("\n");
- sb.Append(" Filter: ").Append(Filter).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class GetFilteredParameters {
- /// <summary>
- /// Gets or Sets Filter
- /// </summary>
- [DataMember(Name="filter", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "filter")]
- public string Filter { get; set; }
-
- /// <summary>
- /// Gets or Sets IsChunked
- /// </summary>
- [DataMember(Name="isChunked", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isChunked")]
- public bool? IsChunked { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class GetFilteredParameters {\n");
- sb.Append(" Filter: ").Append(Filter).Append("\n");
- sb.Append(" IsChunked: ").Append(IsChunked).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class GuiType {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class GuiType {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;\r
-using System.Text;\r
-using System.Collections;\r
-using System.Collections.Generic;\r
-using System.Runtime.Serialization;\r
-using Newtonsoft.Json;\r
-\r
-namespace IO.Swagger.Model {\r
-\r
- /// <summary>\r
- /// \r
- /// </summary>\r
- [DataContract]\r
- public class Item : DynamicAttributes {\r
- /// <summary>\r
- /// Gets or Sets Id\r
- /// </summary>\r
- [DataMember(Name = "id", EmitDefaultValue = false)]\r
- [JsonProperty(PropertyName = "id")]\r
- public long? Id { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets ItemType\r
- /// </summary>\r
- [DataMember(Name = "itemType", EmitDefaultValue = false)]\r
- [JsonProperty(PropertyName = "itemType")]\r
- public ItemType ItemType { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets ItemTypeId\r
- /// </summary>\r
- [DataMember(Name = "itemTypeId", EmitDefaultValue = false)]\r
- [JsonProperty(PropertyName = "itemTypeId")]\r
- public long? ItemTypeId { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets Loaded\r
- /// </summary>\r
- [DataMember(Name = "loaded", EmitDefaultValue = false)]\r
- [JsonProperty(PropertyName = "loaded")]\r
- public bool? Loaded { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets Attributes\r
- /// </summary>\r
- [DataMember(Name = "attributes", EmitDefaultValue = false)]\r
- [JsonIgnore]\r
- public List<MapStringObjectElement> Attributes { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets Created\r
- /// </summary>\r
- [DataMember(Name = "created", EmitDefaultValue = false)]\r
- [JsonProperty(PropertyName = "created")]\r
- public DateTime? Created { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets Modified\r
- /// </summary>\r
- [DataMember(Name = "modified", EmitDefaultValue = false)]\r
- [JsonProperty(PropertyName = "modified")]\r
- public DateTime? Modified { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets Description\r
- /// </summary>\r
- [DataMember(Name = "description", EmitDefaultValue = false)]\r
- [JsonProperty(PropertyName = "description")]\r
- public string Description { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets HouseId\r
- /// </summary>\r
- [DataMember(Name = "houseId", EmitDefaultValue = false)]\r
- [JsonProperty(PropertyName = "houseId")]\r
- public string HouseId { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets Title\r
- /// </summary>\r
- [DataMember(Name = "title", EmitDefaultValue = false)]\r
- [JsonProperty(PropertyName = "title")]\r
- public string Title { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets IsFolder\r
- /// </summary>\r
- [DataMember(Name = "isFolder", EmitDefaultValue = false)]\r
- [JsonProperty(PropertyName = "isFolder")]\r
- public string IsFolder { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets FolderId\r
- /// </summary>\r
- [DataMember(Name = "folderId", EmitDefaultValue = false)]\r
- [JsonProperty(PropertyName = "folderId")]\r
- public long? FolderId { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets Medias\r
- /// </summary>\r
- [DataMember(Name = "medias", EmitDefaultValue = false)]\r
- [JsonProperty(PropertyName = "medias")]\r
- public List<Media> Medias { get; set; }\r
-\r
-\r
- /// <summary>\r
- /// Get the string presentation of the object\r
- /// </summary>\r
- /// <returns>String presentation of the object</returns>\r
- public override string ToString() {\r
- var sb = new StringBuilder();\r
- sb.Append("class Item {\n");\r
- sb.Append(" Id: ").Append(Id).Append("\n");\r
- sb.Append(" ItemType: ").Append(ItemType).Append("\n");\r
- sb.Append(" ItemTypeId: ").Append(ItemTypeId).Append("\n");\r
- sb.Append(" Loaded: ").Append(Loaded).Append("\n");\r
- sb.Append(" Attributes: ").Append(Attributes).Append("\n");\r
- sb.Append(" Created: ").Append(Created).Append("\n");\r
- sb.Append(" Modified: ").Append(Modified).Append("\n");\r
- sb.Append(" Description: ").Append(Description).Append("\n");\r
- sb.Append(" HouseId: ").Append(HouseId).Append("\n");\r
- sb.Append(" Title: ").Append(Title).Append("\n");\r
- sb.Append(" IsFolder: ").Append(IsFolder).Append("\n");\r
- sb.Append(" FolderId: ").Append(FolderId).Append("\n");\r
- sb.Append(" Medias: ").Append(Medias).Append("\n");\r
- sb.Append("}\n");\r
- return sb.ToString();\r
- }\r
-\r
- /// <summary>\r
- /// Get the JSON string presentation of the object\r
- /// </summary>\r
- /// <returns>JSON string presentation of the object</returns>\r
- public new string ToJson() {\r
- return JsonConvert.SerializeObject(this, Formatting.Indented);\r
- }\r
-\r
- }\r
-}\r
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class ItemResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class ItemResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class ItemType : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Description
- /// </summary>
- [DataMember(Name="description", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "description")]
- public string Description { get; set; }
-
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets Metadatas
- /// </summary>
- [DataMember(Name="metadatas", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "metadatas")]
- public List<Metadata> Metadatas { get; set; }
-
- /// <summary>
- /// Gets or Sets TablePrefix
- /// </summary>
- [DataMember(Name="tablePrefix", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "tablePrefix")]
- public string TablePrefix { get; set; }
-
- /// <summary>
- /// Gets or Sets IsStatic
- /// </summary>
- [DataMember(Name="isStatic", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isStatic")]
- public bool? IsStatic { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class ItemType {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Description: ").Append(Description).Append("\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append(" Metadatas: ").Append(Metadatas).Append("\n");
- sb.Append(" TablePrefix: ").Append(TablePrefix).Append("\n");
- sb.Append(" IsStatic: ").Append(IsStatic).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class ItemTypeResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class ItemTypeResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class Job : Syncable {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Counter1
- /// </summary>
- [DataMember(Name="counter1", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "counter1")]
- public AtomicLong Counter1 { get; set; }
-
- /// <summary>
- /// Gets or Sets Priority
- /// </summary>
- [DataMember(Name="priority", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "priority")]
- public long? Priority { get; set; }
-
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets Owner
- /// </summary>
- [DataMember(Name="owner", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "owner")]
- public string Owner { get; set; }
-
- /// <summary>
- /// Gets or Sets Status
- /// </summary>
- [DataMember(Name="status", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "status")]
- public JobStatus Status { get; set; }
-
- /// <summary>
- /// Gets or Sets Description
- /// </summary>
- [DataMember(Name="description", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "description")]
- public string Description { get; set; }
-
- /// <summary>
- /// Gets or Sets Template
- /// </summary>
- [DataMember(Name="template", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "template")]
- public string Template { get; set; }
-
- /// <summary>
- /// Gets or Sets Submitted
- /// </summary>
- [DataMember(Name="submitted", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "submitted")]
- public DateTime Submitted { get; set; }
-
- /// <summary>
- /// Gets or Sets Finished
- /// </summary>
- [DataMember(Name="finished", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "finished")]
- public DateTime Finished { get; set; }
-
- /// <summary>
- /// Gets or Sets Progress
- /// </summary>
- [DataMember(Name="progress", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "progress")]
- public int? Progress { get; set; }
-
- /// <summary>
- /// Gets or Sets ScheduledTime
- /// </summary>
- [DataMember(Name="scheduledTime", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "scheduledTime")]
- public DateTime ScheduledTime { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class Job {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Counter1: ").Append(Counter1).Append("\n");
- sb.Append(" Priority: ").Append(Priority).Append("\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append(" Owner: ").Append(Owner).Append("\n");
- sb.Append(" Status: ").Append(Status).Append("\n");
- sb.Append(" Description: ").Append(Description).Append("\n");
- sb.Append(" Template: ").Append(Template).Append("\n");
- sb.Append(" Submitted: ").Append(Submitted).Append("\n");
- sb.Append(" Finished: ").Append(Finished).Append("\n");
- sb.Append(" Progress: ").Append(Progress).Append("\n");
- sb.Append(" ScheduledTime: ").Append(ScheduledTime).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class JobMessage {
- /// <summary>
- /// Gets or Sets JobId
- /// </summary>
- [DataMember(Name="jobId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "jobId")]
- public long? JobId { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class JobMessage {\n");
- sb.Append(" JobId: ").Append(JobId).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class JobStart {
- /// <summary>
- /// Gets or Sets Time
- /// </summary>
- [DataMember(Name="time", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "time")]
- public DateTime Time { get; set; }
-
- /// <summary>
- /// Gets or Sets JobStartType
- /// </summary>
- [DataMember(Name="jobStartType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "jobStartType")]
- public JobStartType JobStartType { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class JobStart {\n");
- sb.Append(" Time: ").Append(Time).Append("\n");
- sb.Append(" JobStartType: ").Append(JobStartType).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class JobStartType {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class JobStartType {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class JobStatus {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class JobStatus {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class JobTemplatesInfo {
- /// <summary>
- /// Gets or Sets Templates
- /// </summary>
- [DataMember(Name="templates", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "templates")]
- public List<Template> Templates { get; set; }
-
- /// <summary>
- /// Gets or Sets Executors
- /// </summary>
- [DataMember(Name="executors", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "executors")]
- public List<TemplateStep> Executors { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class JobTemplatesInfo {\n");
- sb.Append(" Templates: ").Append(Templates).Append("\n");
- sb.Append(" Executors: ").Append(Executors).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class ListType {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class ListType {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class LogEvent {
- /// <summary>
- /// Gets or Sets Created
- /// </summary>
- [DataMember(Name="created", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "created")]
- public DateTime Created { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Source
- /// </summary>
- [DataMember(Name="source", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "source")]
- public string Source { get; set; }
-
- /// <summary>
- /// Gets or Sets Level
- /// </summary>
- [DataMember(Name="level", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "level")]
- public LogLevel Level { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class LogEvent {\n");
- sb.Append(" Created: ").Append(Created).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Source: ").Append(Source).Append("\n");
- sb.Append(" Level: ").Append(Level).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class LogLevel {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class LogLevel {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class LoginParameters {
- /// <summary>
- /// Gets or Sets Username
- /// </summary>
- [DataMember(Name="username", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "username")]
- public string Username { get; set; }
-
- /// <summary>
- /// Gets or Sets Password
- /// </summary>
- [DataMember(Name="password", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "password")]
- public string Password { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class LoginParameters {\n");
- sb.Append(" Username: ").Append(Username).Append("\n");
- sb.Append(" Password: ").Append(Password).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class MapObjectObjectElement {
- /// <summary>
- /// Gets or Sets Key
- /// </summary>
- [DataMember(Name="key", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "key")]
- public Object Key { get; set; }
-
- /// <summary>
- /// Gets or Sets Value
- /// </summary>
- [DataMember(Name="value", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "value")]
- public Object Value { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class MapObjectObjectElement {\n");
- sb.Append(" Key: ").Append(Key).Append("\n");
- sb.Append(" Value: ").Append(Value).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class MapStringObjectElement {
- /// <summary>
- /// Gets or Sets Key
- /// </summary>
- [DataMember(Name="key", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "key")]
- public string Key { get; set; }
-
- /// <summary>
- /// Gets or Sets Value
- /// </summary>
- [DataMember(Name="value", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "value")]
- public Object Value { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class MapStringObjectElement {\n");
- sb.Append(" Key: ").Append(Key).Append("\n");
- sb.Append(" Value: ").Append(Value).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class MdType {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class MdType {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class Media : DynamicAttributes {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets ItemType
- /// </summary>
- [DataMember(Name="itemType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "itemType")]
- public ItemType ItemType { get; set; }
-
- /// <summary>
- /// Gets or Sets ItemTypeId
- /// </summary>
- [DataMember(Name="itemTypeId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "itemTypeId")]
- public long? ItemTypeId { get; set; }
-
- /// <summary>
- /// Gets or Sets Loaded
- /// </summary>
- [DataMember(Name="loaded", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "loaded")]
- public bool? Loaded { get; set; }
-
- /// <summary>
- /// Gets or Sets Attributes
- /// </summary>
- [DataMember(Name="attributes", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "attributes")]
- public List<MapStringObjectElement> Attributes { get; set; }
-
- /// <summary>
- /// Gets or Sets Archived
- /// </summary>
- [DataMember(Name="archived", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "archived")]
- public DateTime Archived { get; set; }
-
- /// <summary>
- /// Gets or Sets Created
- /// </summary>
- [DataMember(Name="created", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "created")]
- public DateTime Created { get; set; }
-
- /// <summary>
- /// Gets or Sets Description
- /// </summary>
- [DataMember(Name="description", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "description")]
- public string Description { get; set; }
-
- /// <summary>
- /// Gets or Sets HouseId
- /// </summary>
- [DataMember(Name="houseId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "houseId")]
- public string HouseId { get; set; }
-
- /// <summary>
- /// Gets or Sets ItemId
- /// </summary>
- [DataMember(Name="itemId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "itemId")]
- public long? ItemId { get; set; }
-
- /// <summary>
- /// Gets or Sets Length
- /// </summary>
- [DataMember(Name="length", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "length")]
- public long? Length { get; set; }
-
- /// <summary>
- /// Gets or Sets MediaFiles
- /// </summary>
- [DataMember(Name="mediaFiles", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "mediaFiles")]
- public List<MediaFile> MediaFiles { get; set; }
-
- /// <summary>
- /// Gets or Sets Title
- /// </summary>
- [DataMember(Name="title", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "title")]
- public string Title { get; set; }
-
- /// <summary>
- /// Gets or Sets IsPartialEnabled
- /// </summary>
- [DataMember(Name="isPartialEnabled", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isPartialEnabled")]
- public bool? IsPartialEnabled { get; set; }
-
- /// <summary>
- /// Gets or Sets Poster
- /// </summary>
- [DataMember(Name="poster", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "poster")]
- public byte[] Poster { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class Media {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" ItemType: ").Append(ItemType).Append("\n");
- sb.Append(" ItemTypeId: ").Append(ItemTypeId).Append("\n");
- sb.Append(" Loaded: ").Append(Loaded).Append("\n");
- sb.Append(" Attributes: ").Append(Attributes).Append("\n");
- sb.Append(" Archived: ").Append(Archived).Append("\n");
- sb.Append(" Created: ").Append(Created).Append("\n");
- sb.Append(" Description: ").Append(Description).Append("\n");
- sb.Append(" HouseId: ").Append(HouseId).Append("\n");
- sb.Append(" ItemId: ").Append(ItemId).Append("\n");
- sb.Append(" Length: ").Append(Length).Append("\n");
- sb.Append(" MediaFiles: ").Append(MediaFiles).Append("\n");
- sb.Append(" Title: ").Append(Title).Append("\n");
- sb.Append(" IsPartialEnabled: ").Append(IsPartialEnabled).Append("\n");
- sb.Append(" Poster: ").Append(Poster).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class MediaFile : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets FileStructInfo
- /// </summary>
- [DataMember(Name="fileStructInfo", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "fileStructInfo")]
- public string FileStructInfo { get; set; }
-
- /// <summary>
- /// Gets or Sets FileType
- /// </summary>
- [DataMember(Name="fileType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "fileType")]
- public FileType FileType { get; set; }
-
- /// <summary>
- /// Gets or Sets FileTypeId
- /// </summary>
- [DataMember(Name="fileTypeId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "fileTypeId")]
- public long? FileTypeId { get; set; }
-
- /// <summary>
- /// Gets or Sets Media
- /// </summary>
- [DataMember(Name="media", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "media")]
- public Media Media { get; set; }
-
- /// <summary>
- /// Gets or Sets MediaId
- /// </summary>
- [DataMember(Name="mediaId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "mediaId")]
- public long? MediaId { get; set; }
-
- /// <summary>
- /// Gets or Sets RelativePath
- /// </summary>
- [DataMember(Name="relativePath", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "relativePath")]
- public string RelativePath { get; set; }
-
- /// <summary>
- /// Gets or Sets Store
- /// </summary>
- [DataMember(Name="store", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "store")]
- public Store Store { get; set; }
-
- /// <summary>
- /// Gets or Sets StoreId
- /// </summary>
- [DataMember(Name="storeId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "storeId")]
- public long? StoreId { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class MediaFile {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" FileStructInfo: ").Append(FileStructInfo).Append("\n");
- sb.Append(" FileType: ").Append(FileType).Append("\n");
- sb.Append(" FileTypeId: ").Append(FileTypeId).Append("\n");
- sb.Append(" Media: ").Append(Media).Append("\n");
- sb.Append(" MediaId: ").Append(MediaId).Append("\n");
- sb.Append(" RelativePath: ").Append(RelativePath).Append("\n");
- sb.Append(" Store: ").Append(Store).Append("\n");
- sb.Append(" StoreId: ").Append(StoreId).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class MediaFileResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class MediaFileResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class MediaResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class MediaResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class Metadata : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets ItemTypeId
- /// </summary>
- [DataMember(Name="itemTypeId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "itemTypeId")]
- public long? ItemTypeId { get; set; }
-
- /// <summary>
- /// Gets or Sets IdDbIndex
- /// </summary>
- [DataMember(Name="idDbIndex", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "idDbIndex")]
- public bool? IdDbIndex { get; set; }
-
- /// <summary>
- /// Gets or Sets IsDbNullable
- /// </summary>
- [DataMember(Name="isDbNullable", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isDbNullable")]
- public bool? IsDbNullable { get; set; }
-
- /// <summary>
- /// Gets or Sets IsDbUnique
- /// </summary>
- [DataMember(Name="isDbUnique", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isDbUnique")]
- public bool? IsDbUnique { get; set; }
-
- /// <summary>
- /// Gets or Sets IsEditable
- /// </summary>
- [DataMember(Name="isEditable", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isEditable")]
- public bool? IsEditable { get; set; }
-
- /// <summary>
- /// Gets or Sets IsListable
- /// </summary>
- [DataMember(Name="isListable", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isListable")]
- public bool? IsListable { get; set; }
-
- /// <summary>
- /// Gets or Sets IsGenerated
- /// </summary>
- [DataMember(Name="isGenerated", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isGenerated")]
- public bool? IsGenerated { get; set; }
-
- /// <summary>
- /// Gets or Sets IsSearchable
- /// </summary>
- [DataMember(Name="isSearchable", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isSearchable")]
- public bool? IsSearchable { get; set; }
-
- /// <summary>
- /// Gets or Sets GuiType
- /// </summary>
- [DataMember(Name="guiType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "guiType")]
- public GuiType GuiType { get; set; }
-
- /// <summary>
- /// Gets or Sets ListType
- /// </summary>
- [DataMember(Name="listType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "listType")]
- public ListType ListType { get; set; }
-
- /// <summary>
- /// Gets or Sets MetadataElement
- /// </summary>
- [DataMember(Name="metadataElement", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "metadataElement")]
- public MetadataElement MetadataElement { get; set; }
-
- /// <summary>
- /// Gets or Sets MetadataElementId
- /// </summary>
- [DataMember(Name="metadataElementId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "metadataElementId")]
- public long? MetadataElementId { get; set; }
-
- /// <summary>
- /// Gets or Sets StaticTable
- /// </summary>
- [DataMember(Name="staticTable", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "staticTable")]
- public StaticTables StaticTable { get; set; }
-
- /// <summary>
- /// Gets or Sets PojoField
- /// </summary>
- [DataMember(Name="pojoField", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "pojoField")]
- public string PojoField { get; set; }
-
- /// <summary>
- /// Gets or Sets SqlField
- /// </summary>
- [DataMember(Name="sqlField", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "sqlField")]
- public string SqlField { get; set; }
-
- /// <summary>
- /// Gets or Sets Parameter
- /// </summary>
- [DataMember(Name="parameter", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "parameter")]
- public string Parameter { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class Metadata {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" ItemTypeId: ").Append(ItemTypeId).Append("\n");
- sb.Append(" IdDbIndex: ").Append(IdDbIndex).Append("\n");
- sb.Append(" IsDbNullable: ").Append(IsDbNullable).Append("\n");
- sb.Append(" IsDbUnique: ").Append(IsDbUnique).Append("\n");
- sb.Append(" IsEditable: ").Append(IsEditable).Append("\n");
- sb.Append(" IsListable: ").Append(IsListable).Append("\n");
- sb.Append(" IsGenerated: ").Append(IsGenerated).Append("\n");
- sb.Append(" IsSearchable: ").Append(IsSearchable).Append("\n");
- sb.Append(" GuiType: ").Append(GuiType).Append("\n");
- sb.Append(" ListType: ").Append(ListType).Append("\n");
- sb.Append(" MetadataElement: ").Append(MetadataElement).Append("\n");
- sb.Append(" MetadataElementId: ").Append(MetadataElementId).Append("\n");
- sb.Append(" StaticTable: ").Append(StaticTable).Append("\n");
- sb.Append(" PojoField: ").Append(PojoField).Append("\n");
- sb.Append(" SqlField: ").Append(SqlField).Append("\n");
- sb.Append(" Parameter: ").Append(Parameter).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class MetadataElement : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Description
- /// </summary>
- [DataMember(Name="description", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "description")]
- public string Description { get; set; }
-
- /// <summary>
- /// Gets or Sets MetadataType
- /// </summary>
- [DataMember(Name="metadataType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "metadataType")]
- public MetadataType MetadataType { get; set; }
-
- /// <summary>
- /// Gets or Sets MetadataTypeId
- /// </summary>
- [DataMember(Name="metadataTypeId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "metadataTypeId")]
- public long? MetadataTypeId { get; set; }
-
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets DomainCategoryId
- /// </summary>
- [DataMember(Name="domainCategoryId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "domainCategoryId")]
- public long? DomainCategoryId { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class MetadataElement {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Description: ").Append(Description).Append("\n");
- sb.Append(" MetadataType: ").Append(MetadataType).Append("\n");
- sb.Append(" MetadataTypeId: ").Append(MetadataTypeId).Append("\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append(" DomainCategoryId: ").Append(DomainCategoryId).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class MetadataElementResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class MetadataElementResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class MetadataResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class MetadataResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class MetadataType : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets DataType
- /// </summary>
- [DataMember(Name="dataType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "dataType")]
- public string DataType { get; set; }
-
- /// <summary>
- /// Gets or Sets BaseType
- /// </summary>
- [DataMember(Name="baseType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "baseType")]
- public BaseType BaseType { get; set; }
-
- /// <summary>
- /// Gets or Sets JavaType
- /// </summary>
- [DataMember(Name="javaType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "javaType")]
- public string JavaType { get; set; }
-
- /// <summary>
- /// Gets or Sets Length
- /// </summary>
- [DataMember(Name="length", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "length")]
- public int? Length { get; set; }
-
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class MetadataType {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" DataType: ").Append(DataType).Append("\n");
- sb.Append(" BaseType: ").Append(BaseType).Append("\n");
- sb.Append(" JavaType: ").Append(JavaType).Append("\n");
- sb.Append(" Length: ").Append(Length).Append("\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class MetadataTypeResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class MetadataTypeResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class OrderDirection {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class OrderDirection {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class QueryObject {
- /// <summary>
- /// Gets or Sets ActiveItemTypeId
- /// </summary>
- [DataMember(Name="activeItemTypeId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "activeItemTypeId")]
- public long? ActiveItemTypeId { get; set; }
-
- /// <summary>
- /// Gets or Sets Parameters
- /// </summary>
- [DataMember(Name="parameters", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "parameters")]
- public RenderParameter Parameters { get; set; }
-
- /// <summary>
- /// Gets or Sets Filters
- /// </summary>
- [DataMember(Name="filters", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "filters")]
- public List<SearchFilter> Filters { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class QueryObject {\n");
- sb.Append(" ActiveItemTypeId: ").Append(ActiveItemTypeId).Append("\n");
- sb.Append(" Parameters: ").Append(Parameters).Append("\n");
- sb.Append(" Filters: ").Append(Filters).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class RemoteFile : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets Created
- /// </summary>
- [DataMember(Name="created", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "created")]
- public DateTime Created { get; set; }
-
- /// <summary>
- /// Gets or Sets Modify
- /// </summary>
- [DataMember(Name="modify", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "modify")]
- public DateTime Modify { get; set; }
-
- /// <summary>
- /// Gets or Sets Size
- /// </summary>
- [DataMember(Name="size", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "size")]
- public long? Size { get; set; }
-
- /// <summary>
- /// Gets or Sets IsFolder
- /// </summary>
- [DataMember(Name="isFolder", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isFolder")]
- public bool? IsFolder { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class RemoteFile {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append(" Created: ").Append(Created).Append("\n");
- sb.Append(" Modify: ").Append(Modify).Append("\n");
- sb.Append(" Size: ").Append(Size).Append("\n");
- sb.Append(" IsFolder: ").Append(IsFolder).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class RemoteFileResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
- /// <summary>
- /// Gets or Sets Files
- /// </summary>
- [DataMember(Name="files", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "files")]
- public List<RemoteFile> Files { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class RemoteFileResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append(" Files: ").Append(Files).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class RemoteStoreProtocol {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class RemoteStoreProtocol {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class RemoveParameters {
- /// <summary>
- /// Gets or Sets ClassName
- /// </summary>
- [DataMember(Name="className", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "className")]
- public string ClassName { get; set; }
-
- /// <summary>
- /// Gets or Sets Ids
- /// </summary>
- [DataMember(Name="ids", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "ids")]
- public List<long?> Ids { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class RemoveParameters {\n");
- sb.Append(" ClassName: ").Append(ClassName).Append("\n");
- sb.Append(" Ids: ").Append(Ids).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class RenderParameter {
- /// <summary>
- /// Gets or Sets Page
- /// </summary>
- [DataMember(Name="page", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "page")]
- public long? Page { get; set; }
-
- /// <summary>
- /// Gets or Sets RowPerPage
- /// </summary>
- [DataMember(Name="rowPerPage", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "rowPerPage")]
- public long? RowPerPage { get; set; }
-
- /// <summary>
- /// Gets or Sets OrderBy
- /// </summary>
- [DataMember(Name="orderBy", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "orderBy")]
- public Metadata OrderBy { get; set; }
-
- /// <summary>
- /// Gets or Sets OrderDirection
- /// </summary>
- [DataMember(Name="orderDirection", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "orderDirection")]
- public OrderDirection OrderDirection { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class RenderParameter {\n");
- sb.Append(" Page: ").Append(Page).Append("\n");
- sb.Append(" RowPerPage: ").Append(RowPerPage).Append("\n");
- sb.Append(" OrderBy: ").Append(OrderBy).Append("\n");
- sb.Append(" OrderDirection: ").Append(OrderDirection).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class ReplyMessageParameters {
- /// <summary>
- /// Gets or Sets MessageId
- /// </summary>
- [DataMember(Name="messageId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "messageId")]
- public long? MessageId { get; set; }
-
- /// <summary>
- /// Gets or Sets JobId
- /// </summary>
- [DataMember(Name="jobId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "jobId")]
- public long? JobId { get; set; }
-
- /// <summary>
- /// Gets or Sets Reply
- /// </summary>
- [DataMember(Name="reply", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "reply")]
- public int? Reply { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class ReplyMessageParameters {\n");
- sb.Append(" MessageId: ").Append(MessageId).Append("\n");
- sb.Append(" JobId: ").Append(JobId).Append("\n");
- sb.Append(" Reply: ").Append(Reply).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class RestartRequest : JobMessage {
- /// <summary>
- /// Gets or Sets JobId
- /// </summary>
- [DataMember(Name="jobId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "jobId")]
- public long? JobId { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class RestartRequest {\n");
- sb.Append(" JobId: ").Append(JobId).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class ResumeRequest : JobMessage {
- /// <summary>
- /// Gets or Sets JobId
- /// </summary>
- [DataMember(Name="jobId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "jobId")]
- public long? JobId { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class ResumeRequest {\n");
- sb.Append(" JobId: ").Append(JobId).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class Scene : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets Created
- /// </summary>
- [DataMember(Name="created", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "created")]
- public DateTime Created { get; set; }
-
- /// <summary>
- /// Gets or Sets Modified
- /// </summary>
- [DataMember(Name="modified", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "modified")]
- public DateTime Modified { get; set; }
-
- /// <summary>
- /// Gets or Sets SceneContents
- /// </summary>
- [DataMember(Name="sceneContents", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "sceneContents")]
- public List<SceneContent> SceneContents { get; set; }
-
- /// <summary>
- /// Gets or Sets IsChunked
- /// </summary>
- [DataMember(Name="isChunked", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isChunked")]
- public bool? IsChunked { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class Scene {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append(" Created: ").Append(Created).Append("\n");
- sb.Append(" Modified: ").Append(Modified).Append("\n");
- sb.Append(" SceneContents: ").Append(SceneContents).Append("\n");
- sb.Append(" IsChunked: ").Append(IsChunked).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class SceneContent : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Scene
- /// </summary>
- [DataMember(Name="scene", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "scene")]
- public Scene Scene { get; set; }
-
- /// <summary>
- /// Gets or Sets SceneId
- /// </summary>
- [DataMember(Name="sceneId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "sceneId")]
- public long? SceneId { get; set; }
-
- /// <summary>
- /// Gets or Sets Shot
- /// </summary>
- [DataMember(Name="shot", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "shot")]
- public Shot Shot { get; set; }
-
- /// <summary>
- /// Gets or Sets ShotId
- /// </summary>
- [DataMember(Name="shotId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "shotId")]
- public long? ShotId { get; set; }
-
- /// <summary>
- /// Gets or Sets Position
- /// </summary>
- [DataMember(Name="position", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "position")]
- public long? Position { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class SceneContent {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Scene: ").Append(Scene).Append("\n");
- sb.Append(" SceneId: ").Append(SceneId).Append("\n");
- sb.Append(" Shot: ").Append(Shot).Append("\n");
- sb.Append(" ShotId: ").Append(ShotId).Append("\n");
- sb.Append(" Position: ").Append(Position).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class SceneContentResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class SceneContentResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class SceneResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class SceneResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class SearchDefinition : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets Created
- /// </summary>
- [DataMember(Name="created", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "created")]
- public DateTime Created { get; set; }
-
- /// <summary>
- /// Gets or Sets Modified
- /// </summary>
- [DataMember(Name="modified", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "modified")]
- public DateTime Modified { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public byte[] Data { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class SearchDefinition {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append(" Created: ").Append(Created).Append("\n");
- sb.Append(" Modified: ").Append(Modified).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class SearchDefinitionResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class SearchDefinitionResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class SearchFilter {
- /// <summary>
- /// Gets or Sets Logic
- /// </summary>
- [DataMember(Name="logic", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "logic")]
- public FilterLogic Logic { get; set; }
-
- /// <summary>
- /// Gets or Sets ItemTypeId
- /// </summary>
- [DataMember(Name="itemTypeId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "itemTypeId")]
- public long? ItemTypeId { get; set; }
-
- /// <summary>
- /// Gets or Sets Metadata
- /// </summary>
- [DataMember(Name="metadata", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "metadata")]
- public Metadata Metadata { get; set; }
-
- /// <summary>
- /// Gets or Sets ValueLogic
- /// </summary>
- [DataMember(Name="valueLogic", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "valueLogic")]
- public FilterValueLogic ValueLogic { get; set; }
-
- /// <summary>
- /// Gets or Sets Values
- /// </summary>
- [DataMember(Name="values", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "values")]
- public List<Object> Values { get; set; }
-
- /// <summary>
- /// Gets or Sets Filters
- /// </summary>
- [DataMember(Name="filters", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "filters")]
- public List<SearchFilter> Filters { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class SearchFilter {\n");
- sb.Append(" Logic: ").Append(Logic).Append("\n");
- sb.Append(" ItemTypeId: ").Append(ItemTypeId).Append("\n");
- sb.Append(" Metadata: ").Append(Metadata).Append("\n");
- sb.Append(" ValueLogic: ").Append(ValueLogic).Append("\n");
- sb.Append(" Values: ").Append(Values).Append("\n");
- sb.Append(" Filters: ").Append(Filters).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class SearchResult {
- /// <summary>
- /// Gets or Sets ItemCount
- /// </summary>
- [DataMember(Name="itemCount", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "itemCount")]
- public long? ItemCount { get; set; }
-
- /// <summary>
- /// Gets or Sets ItemType
- /// </summary>
- [DataMember(Name="itemType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "itemType")]
- public ItemType ItemType { get; set; }
-
- /// <summary>
- /// Gets or Sets Items
- /// </summary>
- [DataMember(Name="items", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "items")]
- public List<Item> Items { get; set; }
-
- /// <summary>
- /// Gets or Sets Folders
- /// </summary>
- [DataMember(Name="folders", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "folders")]
- public List<Item> Folders { get; set; }
-
- /// <summary>
- /// Gets or Sets Parameters
- /// </summary>
- [DataMember(Name="parameters", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "parameters")]
- public RenderParameter Parameters { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class SearchResult {\n");
- sb.Append(" ItemCount: ").Append(ItemCount).Append("\n");
- sb.Append(" ItemType: ").Append(ItemType).Append("\n");
- sb.Append(" Items: ").Append(Items).Append("\n");
- sb.Append(" Folders: ").Append(Folders).Append("\n");
- sb.Append(" Parameters: ").Append(Parameters).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;\r
-using System.Text;\r
-using System.Collections;\r
-using System.Collections.Generic;\r
-using System.Runtime.Serialization;\r
-using Newtonsoft.Json;\r
-\r
-namespace IO.Swagger.Model {\r
-\r
- /// <summary>\r
- /// \r
- /// </summary>\r
- [DataContract]\r
- public class Shot : EntityBase {\r
- /// <summary>\r
- /// Gets or Sets Id\r
- /// </summary>\r
- [DataMember(Name="id", EmitDefaultValue=false)]\r
- [JsonProperty(PropertyName = "id")]\r
- public long? Id { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets Created\r
- /// </summary>\r
- [DataMember(Name="created", EmitDefaultValue=false)]\r
- [JsonProperty(PropertyName = "created")]\r
- public DateTime Created { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets Description\r
- /// </summary>\r
- [DataMember(Name="description", EmitDefaultValue=false)]\r
- [JsonProperty(PropertyName = "description")]\r
- public string Description { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets InPoint\r
- /// </summary>\r
- [DataMember(Name="inPoint", EmitDefaultValue=false)]\r
- [JsonProperty(PropertyName = "inPoint")]\r
- public long? InPoint { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets Media\r
- /// </summary>\r
- [DataMember(Name="media", EmitDefaultValue=false)]\r
- [JsonProperty(PropertyName = "media")]\r
- public Media Media { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets MediaId\r
- /// </summary>\r
- [DataMember(Name="mediaId", EmitDefaultValue=false)]\r
- [JsonProperty(PropertyName = "mediaId")]\r
- public long? MediaId { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets OutPoint\r
- /// </summary>\r
- [DataMember(Name="outPoint", EmitDefaultValue=false)]\r
- [JsonProperty(PropertyName = "outPoint")]\r
- public long? OutPoint { get; set; }\r
-\r
- /// <summary>\r
- /// Gets or Sets Thumbnail\r
- /// </summary>\r
- [DataMember(Name="thumbnail", EmitDefaultValue=false)]\r
- [JsonProperty(PropertyName = "thumbnail")]\r
- public byte[] Thumbnail { get; set; }\r
-\r
-\r
- /// <summary>\r
- /// Get the string presentation of the object\r
- /// </summary>\r
- /// <returns>String presentation of the object</returns>\r
- public override string ToString() {\r
- var sb = new StringBuilder();\r
- sb.Append("class Shot {\n");\r
- sb.Append(" Id: ").Append(Id).Append("\n");\r
- sb.Append(" Created: ").Append(Created).Append("\n");\r
- sb.Append(" Description: ").Append(Description).Append("\n");\r
- sb.Append(" InPoint: ").Append(InPoint).Append("\n");\r
- sb.Append(" Media: ").Append(Media).Append("\n");\r
- sb.Append(" MediaId: ").Append(MediaId).Append("\n");\r
- sb.Append(" OutPoint: ").Append(OutPoint).Append("\n");\r
- sb.Append(" Thumbnail: ").Append(Thumbnail).Append("\n");\r
- sb.Append("}\n");\r
- return sb.ToString();\r
- }\r
-\r
- /// <summary>\r
- /// Get the JSON string presentation of the object\r
- /// </summary>\r
- /// <returns>JSON string presentation of the object</returns>\r
- public new string ToJson() {\r
- return JsonConvert.SerializeObject(this, Formatting.Indented);\r
- }\r
-\r
-}\r
-}\r
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class ShotResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class ShotResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class Signal : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets SignalType
- /// </summary>
- [DataMember(Name="signalType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "signalType")]
- public SignalType SignalType { get; set; }
-
- /// <summary>
- /// Gets or Sets StaticTable
- /// </summary>
- [DataMember(Name="staticTable", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "staticTable")]
- public StaticTables StaticTable { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class Signal {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" SignalType: ").Append(SignalType).Append("\n");
- sb.Append(" StaticTable: ").Append(StaticTable).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class SignalType {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class SignalType {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class SqlIndexType {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class SqlIndexType {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class StaticTables {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class StaticTables {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class Store : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets StoreUris
- /// </summary>
- [DataMember(Name="storeUris", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "storeUris")]
- public List<StoreUri> StoreUris { get; set; }
-
- /// <summary>
- /// Gets or Sets IsSystem
- /// </summary>
- [DataMember(Name="isSystem", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isSystem")]
- public bool? IsSystem { get; set; }
-
- /// <summary>
- /// Gets or Sets IsLowres
- /// </summary>
- [DataMember(Name="isLowres", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isLowres")]
- public bool? IsLowres { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class Store {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append(" StoreUris: ").Append(StoreUris).Append("\n");
- sb.Append(" IsSystem: ").Append(IsSystem).Append("\n");
- sb.Append(" IsLowres: ").Append(IsLowres).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class StoreResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class StoreResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class StoreUri : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets BUFFER_SIZE
- /// </summary>
- [DataMember(Name="BUFFER_SIZE", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "BUFFER_SIZE")]
- public int? BUFFER_SIZE { get; set; }
-
- /// <summary>
- /// Gets or Sets Uri
- /// </summary>
- [DataMember(Name="uri", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "uri")]
- public string Uri { get; set; }
-
- /// <summary>
- /// Gets or Sets StoreId
- /// </summary>
- [DataMember(Name="storeId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "storeId")]
- public long? StoreId { get; set; }
-
- /// <summary>
- /// Gets or Sets IsStream
- /// </summary>
- [DataMember(Name="isStream", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isStream")]
- public bool? IsStream { get; set; }
-
- /// <summary>
- /// Gets or Sets IsSource
- /// </summary>
- [DataMember(Name="isSource", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isSource")]
- public bool? IsSource { get; set; }
-
- /// <summary>
- /// Gets or Sets IsTarget
- /// </summary>
- [DataMember(Name="isTarget", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isTarget")]
- public bool? IsTarget { get; set; }
-
- /// <summary>
- /// Gets or Sets Filter
- /// </summary>
- [DataMember(Name="filter", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "filter")]
- public string Filter { get; set; }
-
- /// <summary>
- /// Gets or Sets UserName
- /// </summary>
- [DataMember(Name="userName", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "userName")]
- public string UserName { get; set; }
-
- /// <summary>
- /// Gets or Sets Password
- /// </summary>
- [DataMember(Name="password", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "password")]
- public string Password { get; set; }
-
- /// <summary>
- /// Gets or Sets RootPath
- /// </summary>
- [DataMember(Name="rootPath", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "rootPath")]
- public string RootPath { get; set; }
-
- /// <summary>
- /// Gets or Sets CurrentPath
- /// </summary>
- [DataMember(Name="currentPath", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "currentPath")]
- public string CurrentPath { get; set; }
-
- /// <summary>
- /// Gets or Sets PortNumber
- /// </summary>
- [DataMember(Name="portNumber", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "portNumber")]
- public int? PortNumber { get; set; }
-
- /// <summary>
- /// Gets or Sets Protocol
- /// </summary>
- [DataMember(Name="protocol", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "protocol")]
- public RemoteStoreProtocol Protocol { get; set; }
-
- /// <summary>
- /// Gets or Sets Delivery
- /// </summary>
- [DataMember(Name="delivery", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "delivery")]
- public DeliveryMethod Delivery { get; set; }
-
- /// <summary>
- /// Gets or Sets Percent
- /// </summary>
- [DataMember(Name="percent", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "percent")]
- public int? Percent { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class StoreUri {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" BUFFER_SIZE: ").Append(BUFFER_SIZE).Append("\n");
- sb.Append(" Uri: ").Append(Uri).Append("\n");
- sb.Append(" StoreId: ").Append(StoreId).Append("\n");
- sb.Append(" IsStream: ").Append(IsStream).Append("\n");
- sb.Append(" IsSource: ").Append(IsSource).Append("\n");
- sb.Append(" IsTarget: ").Append(IsTarget).Append("\n");
- sb.Append(" Filter: ").Append(Filter).Append("\n");
- sb.Append(" UserName: ").Append(UserName).Append("\n");
- sb.Append(" Password: ").Append(Password).Append("\n");
- sb.Append(" RootPath: ").Append(RootPath).Append("\n");
- sb.Append(" CurrentPath: ").Append(CurrentPath).Append("\n");
- sb.Append(" PortNumber: ").Append(PortNumber).Append("\n");
- sb.Append(" Protocol: ").Append(Protocol).Append("\n");
- sb.Append(" Delivery: ").Append(Delivery).Append("\n");
- sb.Append(" Percent: ").Append(Percent).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class StoreUriResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class StoreUriResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class Syncable : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class Syncable {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class SystemResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class Template : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets TemplateSteps
- /// </summary>
- [DataMember(Name="templateSteps", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "templateSteps")]
- public List<TemplateStep> TemplateSteps { get; set; }
-
- /// <summary>
- /// Gets or Sets TemplateDeclarations
- /// </summary>
- [DataMember(Name="templateDeclarations", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "templateDeclarations")]
- public List<TemplateDeclaration> TemplateDeclarations { get; set; }
-
- /// <summary>
- /// Gets or Sets FileName
- /// </summary>
- [DataMember(Name="fileName", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "fileName")]
- public string FileName { get; set; }
-
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets Description
- /// </summary>
- [DataMember(Name="description", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "description")]
- public string Description { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class Template {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" TemplateSteps: ").Append(TemplateSteps).Append("\n");
- sb.Append(" TemplateDeclarations: ").Append(TemplateDeclarations).Append("\n");
- sb.Append(" FileName: ").Append(FileName).Append("\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append(" Description: ").Append(Description).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class TemplateDeclaration {
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets Type
- /// </summary>
- [DataMember(Name="type", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "type")]
- public string Type { get; set; }
-
- /// <summary>
- /// Gets or Sets DeclarationType
- /// </summary>
- [DataMember(Name="declarationType", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "declarationType")]
- public DeclarationType DeclarationType { get; set; }
-
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class TemplateDeclaration {\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append(" Type: ").Append(Type).Append("\n");
- sb.Append(" DeclarationType: ").Append(DeclarationType).Append("\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class TemplateResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class TemplateResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class TemplateStep {
- /// <summary>
- /// Gets or Sets Weight
- /// </summary>
- [DataMember(Name="weight", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "weight")]
- public int? Weight { get; set; }
-
- /// <summary>
- /// Gets or Sets MaxConcurrent
- /// </summary>
- [DataMember(Name="maxConcurrent", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "maxConcurrent")]
- public int? MaxConcurrent { get; set; }
-
- /// <summary>
- /// Gets or Sets Inputs
- /// </summary>
- [DataMember(Name="inputs", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "inputs")]
- public List<TemplateDeclaration> Inputs { get; set; }
-
- /// <summary>
- /// Gets or Sets Outputs
- /// </summary>
- [DataMember(Name="outputs", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "outputs")]
- public List<TemplateDeclaration> Outputs { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class TemplateStep {\n");
- sb.Append(" Weight: ").Append(Weight).Append("\n");
- sb.Append(" MaxConcurrent: ").Append(MaxConcurrent).Append("\n");
- sb.Append(" Inputs: ").Append(Inputs).Append("\n");
- sb.Append(" Outputs: ").Append(Outputs).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class TranscoderProfile {
- /// <summary>
- /// Gets or Sets Name
- /// </summary>
- [DataMember(Name="name", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets Guid
- /// </summary>
- [DataMember(Name="guid", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "guid")]
- public string Guid { get; set; }
-
- /// <summary>
- /// Gets or Sets IsDefault
- /// </summary>
- [DataMember(Name="isDefault", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "isDefault")]
- public bool? IsDefault { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class TranscoderProfile {\n");
- sb.Append(" Name: ").Append(Name).Append("\n");
- sb.Append(" Guid: ").Append(Guid).Append("\n");
- sb.Append(" IsDefault: ").Append(IsDefault).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class UserInfo : EntityBase {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets FullName
- /// </summary>
- [DataMember(Name="fullName", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "fullName")]
- public string FullName { get; set; }
-
- /// <summary>
- /// Gets or Sets UserName
- /// </summary>
- [DataMember(Name="userName", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "userName")]
- public string UserName { get; set; }
-
- /// <summary>
- /// Gets or Sets Password
- /// </summary>
- [DataMember(Name="password", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "password")]
- public string Password { get; set; }
-
- /// <summary>
- /// Gets or Sets Created
- /// </summary>
- [DataMember(Name="created", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "created")]
- public DateTime Created { get; set; }
-
- /// <summary>
- /// Gets or Sets LastLogin
- /// </summary>
- [DataMember(Name="lastLogin", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "lastLogin")]
- public DateTime? LastLogin { get; set; }
-
- /// <summary>
- /// Gets or Sets Rights
- /// </summary>
- [DataMember(Name="rights", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "rights")]
- public int? Rights { get; set; }
-
- /// <summary>
- /// Gets or Sets Token
- /// </summary>
- [DataMember(Name="token", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "token")]
- public string Token { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class UserInfo {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" FullName: ").Append(FullName).Append("\n");
- sb.Append(" UserName: ").Append(UserName).Append("\n");
- sb.Append(" Password: ").Append(Password).Append("\n");
- sb.Append(" Created: ").Append(Created).Append("\n");
- sb.Append(" LastLogin: ").Append(LastLogin).Append("\n");
- sb.Append(" Rights: ").Append(Rights).Append("\n");
- sb.Append(" Token: ").Append(Token).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class UserInfoResponse : SystemResponse {
- /// <summary>
- /// Gets or Sets Id
- /// </summary>
- [DataMember(Name="id", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "id")]
- public long? Id { get; set; }
-
- /// <summary>
- /// Gets or Sets Data
- /// </summary>
- [DataMember(Name="data", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "data")]
- public Object Data { get; set; }
-
- /// <summary>
- /// Gets or Sets Message
- /// </summary>
- [DataMember(Name="message", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "message")]
- public string Message { get; set; }
-
- /// <summary>
- /// Gets or Sets Success
- /// </summary>
- [DataMember(Name="success", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "success")]
- public bool? Success { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class UserInfoResponse {\n");
- sb.Append(" Id: ").Append(Id).Append("\n");
- sb.Append(" Data: ").Append(Data).Append("\n");
- sb.Append(" Message: ").Append(Message).Append("\n");
- sb.Append(" Success: ").Append(Success).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class UserMessage {
- /// <summary>
- /// Gets or Sets Created
- /// </summary>
- [DataMember(Name="created", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "created")]
- public DateTime? Created { get; set; }
-
- /// <summary>
- /// Gets or Sets ValidReplies
- /// </summary>
- [DataMember(Name="validReplies", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "validReplies")]
- public ValidReplies ValidReplies { get; set; }
-
- /// <summary>
- /// Gets or Sets JobId
- /// </summary>
- [DataMember(Name="jobId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "jobId")]
- public long? JobId { get; set; }
-
- /// <summary>
- /// Gets or Sets MessageId
- /// </summary>
- [DataMember(Name="messageId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "messageId")]
- public long? MessageId { get; set; }
-
- /// <summary>
- /// Gets or Sets MessageNumber
- /// </summary>
- [DataMember(Name="messageNumber", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "messageNumber")]
- public long? MessageNumber { get; set; }
-
- /// <summary>
- /// Gets or Sets MustReply
- /// </summary>
- [DataMember(Name="mustReply", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "mustReply")]
- public bool? MustReply { get; set; }
-
- /// <summary>
- /// Gets or Sets Owner
- /// </summary>
- [DataMember(Name="owner", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "owner")]
- public string Owner { get; set; }
-
- /// <summary>
- /// Gets or Sets Text
- /// </summary>
- [DataMember(Name="text", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "text")]
- public string Text { get; set; }
-
- /// <summary>
- /// Gets or Sets Reply
- /// </summary>
- [DataMember(Name="reply", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "reply")]
- public int? Reply { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class UserMessage {\n");
- sb.Append(" Created: ").Append(Created).Append("\n");
- sb.Append(" ValidReplies: ").Append(ValidReplies).Append("\n");
- sb.Append(" JobId: ").Append(JobId).Append("\n");
- sb.Append(" MessageId: ").Append(MessageId).Append("\n");
- sb.Append(" MessageNumber: ").Append(MessageNumber).Append("\n");
- sb.Append(" MustReply: ").Append(MustReply).Append("\n");
- sb.Append(" Owner: ").Append(Owner).Append("\n");
- sb.Append(" Text: ").Append(Text).Append("\n");
- sb.Append(" Reply: ").Append(Reply).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class UserReplyMessage : JobMessage {
- /// <summary>
- /// Gets or Sets JobId
- /// </summary>
- [DataMember(Name="jobId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "jobId")]
- public long? JobId { get; set; }
-
- /// <summary>
- /// Gets or Sets Reply
- /// </summary>
- [DataMember(Name="reply", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "reply")]
- public Object Reply { get; set; }
-
- /// <summary>
- /// Gets or Sets MessageId
- /// </summary>
- [DataMember(Name="messageId", EmitDefaultValue=false)]
- [JsonProperty(PropertyName = "messageId")]
- public long? MessageId { get; set; }
-
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class UserReplyMessage {\n");
- sb.Append(" JobId: ").Append(JobId).Append("\n");
- sb.Append(" Reply: ").Append(Reply).Append("\n");
- sb.Append(" MessageId: ").Append(MessageId).Append("\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public new string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class UserRight {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class UserRight {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
+++ /dev/null
-using System;
-using System.Text;
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.Serialization;
-using Newtonsoft.Json;
-
-namespace IO.Swagger.Model {
-
- /// <summary>
- ///
- /// </summary>
- [DataContract]
- public class ValidReplies {
-
- /// <summary>
- /// Get the string presentation of the object
- /// </summary>
- /// <returns>String presentation of the object</returns>
- public override string ToString() {
- var sb = new StringBuilder();
- sb.Append("class ValidReplies {\n");
- sb.Append("}\n");
- return sb.ToString();
- }
-
- /// <summary>
- /// Get the JSON string presentation of the object
- /// </summary>
- /// <returns>JSON string presentation of the object</returns>
- public string ToJson() {
- return JsonConvert.SerializeObject(this, Formatting.Indented);
- }
-
-}
-}
</Reference>\r
</ItemGroup>\r
<ItemGroup>\r
- <Compile Include="IO\Swagger\Api\DefaultApi.cs" />\r
- <Compile Include="IO\Swagger\Client\ApiClient.cs" />\r
- <Compile Include="IO\Swagger\Client\ApiException.cs" />\r
- <Compile Include="IO\Swagger\Client\Configuration.cs" />\r
- <Compile Include="IO\Swagger\Model\AtomicLong.cs" />\r
- <Compile Include="IO\Swagger\Model\BaseType.cs" />\r
- <Compile Include="IO\Swagger\Model\BreakType.cs" />\r
- <Compile Include="IO\Swagger\Model\CreateJobParameters.cs" />\r
- <Compile Include="IO\Swagger\Model\DeclarationType.cs" />\r
- <Compile Include="IO\Swagger\Model\DeliveryMethod.cs" />\r
- <Compile Include="IO\Swagger\Model\Domain.cs" />\r
- <Compile Include="IO\Swagger\Model\DomainCategory.cs" />\r
- <Compile Include="IO\Swagger\Model\DomainCategoryResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\DomainResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\Domains.cs" />\r
- <Compile Include="IO\Swagger\Model\DynamicAttributes.cs" />\r
- <Compile Include="IO\Swagger\Model\EntityBase.cs" />\r
- <Compile Include="IO\Swagger\Model\FileType.cs" />\r
- <Compile Include="IO\Swagger\Model\FilterLogic.cs" />\r
- <Compile Include="IO\Swagger\Model\FilterValueLogic.cs" />\r
- <Compile Include="IO\Swagger\Model\Folder.cs" />\r
- <Compile Include="IO\Swagger\Model\FolderResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\GetFilteredDomainByDisplayParameters.cs" />\r
- <Compile Include="IO\Swagger\Model\GetFilteredParameters.cs" />\r
- <Compile Include="IO\Swagger\Model\GuiType.cs" />\r
- <Compile Include="IO\Swagger\Model\Item.cs" />\r
- <Compile Include="IO\Swagger\Model\ItemResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\ItemType.cs" />\r
- <Compile Include="IO\Swagger\Model\ItemTypeResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\Job.cs" />\r
- <Compile Include="IO\Swagger\Model\JobMessage.cs" />\r
- <Compile Include="IO\Swagger\Model\JobStart.cs" />\r
- <Compile Include="IO\Swagger\Model\JobStartType.cs" />\r
- <Compile Include="IO\Swagger\Model\JobStatus.cs" />\r
- <Compile Include="IO\Swagger\Model\JobTemplatesInfo.cs" />\r
- <Compile Include="IO\Swagger\Model\ListType.cs" />\r
- <Compile Include="IO\Swagger\Model\LogEvent.cs" />\r
- <Compile Include="IO\Swagger\Model\LoginParameters.cs" />\r
- <Compile Include="IO\Swagger\Model\LogLevel.cs" />\r
- <Compile Include="IO\Swagger\Model\MapObjectObjectElement.cs" />\r
- <Compile Include="IO\Swagger\Model\MapStringObjectElement.cs" />\r
- <Compile Include="IO\Swagger\Model\MdType.cs" />\r
- <Compile Include="IO\Swagger\Model\Media.cs" />\r
- <Compile Include="IO\Swagger\Model\MediaFile.cs" />\r
- <Compile Include="IO\Swagger\Model\MediaFileResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\MediaResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\Metadata.cs" />\r
- <Compile Include="IO\Swagger\Model\MetadataElement.cs" />\r
- <Compile Include="IO\Swagger\Model\MetadataElementResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\MetadataResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\MetadataType.cs" />\r
- <Compile Include="IO\Swagger\Model\MetadataTypeResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\OrderDirection.cs" />\r
- <Compile Include="IO\Swagger\Model\QueryObject.cs" />\r
- <Compile Include="IO\Swagger\Model\RemoteFile.cs" />\r
- <Compile Include="IO\Swagger\Model\RemoteFileResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\RemoteStoreProtocol.cs" />\r
- <Compile Include="IO\Swagger\Model\RemoveParameters.cs" />\r
- <Compile Include="IO\Swagger\Model\RenderParameter.cs" />\r
- <Compile Include="IO\Swagger\Model\ReplyMessageParameters.cs" />\r
- <Compile Include="IO\Swagger\Model\RestartRequest.cs" />\r
- <Compile Include="IO\Swagger\Model\ResumeRequest.cs" />\r
- <Compile Include="IO\Swagger\Model\Scene.cs" />\r
- <Compile Include="IO\Swagger\Model\SceneContent.cs" />\r
- <Compile Include="IO\Swagger\Model\SceneContentResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\SceneResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\SearchDefinition.cs" />\r
- <Compile Include="IO\Swagger\Model\SearchDefinitionResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\SearchFilter.cs" />\r
- <Compile Include="IO\Swagger\Model\SearchResult.cs" />\r
- <Compile Include="IO\Swagger\Model\Shot.cs" />\r
- <Compile Include="IO\Swagger\Model\ShotResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\Signal.cs" />\r
- <Compile Include="IO\Swagger\Model\SignalType.cs" />\r
- <Compile Include="IO\Swagger\Model\SqlIndexType.cs" />\r
- <Compile Include="IO\Swagger\Model\StaticTables.cs" />\r
- <Compile Include="IO\Swagger\Model\Store.cs" />\r
- <Compile Include="IO\Swagger\Model\StoreResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\StoreUri.cs" />\r
- <Compile Include="IO\Swagger\Model\StoreUriResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\Syncable.cs" />\r
- <Compile Include="IO\Swagger\Model\SystemResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\Template.cs" />\r
- <Compile Include="IO\Swagger\Model\TemplateDeclaration.cs" />\r
- <Compile Include="IO\Swagger\Model\TemplateResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\TemplateStep.cs" />\r
- <Compile Include="IO\Swagger\Model\TranscoderProfile.cs" />\r
- <Compile Include="IO\Swagger\Model\UserInfo.cs" />\r
- <Compile Include="IO\Swagger\Model\UserInfoResponse.cs" />\r
- <Compile Include="IO\Swagger\Model\UserMessage.cs" />\r
- <Compile Include="IO\Swagger\Model\UserReplyMessage.cs" />\r
- <Compile Include="IO\Swagger\Model\UserRight.cs" />\r
- <Compile Include="IO\Swagger\Model\ValidReplies.cs" />\r
<Compile Include="JobEngineAPI.cs" />\r
<Compile Include="NexioAPI.cs" />\r
<Compile Include="NotificationMessage.cs" />\r
<?xml version="1.0" encoding="UTF-8" standalone="no"?>\r
<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">\r
<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>\r
-<stringAttribute key="M2_GOALS" value="deploy:exec"/>\r
+<stringAttribute key="M2_GOALS" value="deploy"/>\r
<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>\r
<booleanAttribute key="M2_OFFLINE" value="true"/>\r
<stringAttribute key="M2_PROFILES" value=""/>\r
</configuration>\r
</plugin>\r
<plugin>\r
- <groupId>org.eclipse.tycho</groupId>\r
+ <groupId>org.eclipse.tycho</groupId> \r
<artifactId>tycho-maven-plugin</artifactId>\r
<version>${tycho.version}</version>\r
<extensions>true</extensions>\r