Exemple #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);
     ContactsRaw      = new RawContactServices(apiKey, apiBaseUrlv2);
     OrganizationsRaw = new RawOrganizationServices(apiKey, apiBaseUrlv2);
     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);
 }
Exemple #2
0
 internal ContactServices(string apiKey, string apiBaseUrl, bool includeRawResponse) : base(includeRawResponse)
 {
     _rawContactServices = new RawContactServices(apiKey, apiBaseUrl);
 }