/// <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); }
internal FieldServices(string apiKey, string apiBaseUrl, bool includeRawResponse) : base(includeRawResponse) { _rawFieldServices = new RawFieldServices(apiKey, apiBaseUrl); }