/// <summary> /// Gets a list of profiles based on the specified <paramref name="options"/>. /// </summary> /// <param name="options">The options for the request to the API.</param> /// <returns>An instance of <see cref="IHttpResponse"/> representing the response.</returns> public IHttpResponse GetProfiles(AnalyticsGetProfilesOptions options) { if (options == null) { throw new ArgumentNullException(nameof(options)); } return(Client.GetResponse(options)); }
/// <summary> /// Gets a list of profiles based on the specified <paramref name="options"/>. /// </summary> /// <param name="options">The options for the call to the API.</param> public AnalyticsGetProfilesResponse GetProfiles(AnalyticsGetProfilesOptions options) { if (options == null) { throw new ArgumentNullException(nameof(options)); } return(AnalyticsGetProfilesResponse.ParseResponse(Raw.GetProfiles(options))); }