Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="StreakServices"/> class.
 /// </summary>
 /// <param name="apiKey">The API key.</param>
 /// <param name="apiBaseUrl">The API base URL.</param>
 public RawStreakServices(string apiKey, string apiBaseUrl)
 {
     UsersRaw     = new RawUserServices(apiKey, apiBaseUrl);
     PipelinesRaw = new RawPipelineServices(apiKey, apiBaseUrl);
     BoxesRaw     = new RawBoxServices(apiKey, apiBaseUrl);
     StagesRaw    = new RawStageServices(apiKey, apiBaseUrl);
     FieldsRaw    = new RawFieldServices(apiKey, apiBaseUrl);
     TasksRaw     = new RawTaskService(apiKey, apiBaseUrl);
     TasksRaw     = new RawTaskService(apiKey, apiBaseUrl);
     FilesRaw     = new RawFileServices(apiKey, apiBaseUrl);
     ThreadsRaw   = new RawThreadServices(apiKey, apiBaseUrl);
     CommentsRaw  = new RawCommentServices(apiKey, apiBaseUrl);
     SnippetsRaw  = new RawSnippetServices(apiKey, apiBaseUrl);
 }
Ejemplo n.º 2
0
 internal PipelineServices(string apiKey, string apiBaseUrl, bool includeRawResponse) : base(includeRawResponse)
 {
     _rawPipelineServices = new RawPipelineServices(apiKey, apiBaseUrl);
 }