Class SurveysDataRetentionClient
public class SurveysDataRetentionClient
- Inheritance
-
SurveysDataRetentionClient
- Inherited Members
Constructors
SurveysDataRetentionClient(string, HttpClient)
public SurveysDataRetentionClient(string baseUrl, HttpClient httpClient)
Parameters
baseUrlstringhttpClientHttpClient
Properties
BaseUrl
public string BaseUrl { get; set; }
Property Value
JsonSerializerSettings
protected JsonSerializerSettings JsonSerializerSettings { get; }
Property Value
- JsonSerializerSettings
ReadResponseAsString
public bool ReadResponseAsString { get; set; }
Property Value
Methods
GetAsync(string, CancellationToken)
Get the data retention settings for a survey
public virtual Task<GetDataRetentionSettingsModel> GetAsync(string surveyId, CancellationToken cancellationToken = default)
Parameters
surveyIdstringThe id of the survey
cancellationTokenCancellationTokenA cancellation token that can be used by other objects or threads to receive notice of cancellation.
Returns
- Task<GetDataRetentionSettingsModel>
Successful
Exceptions
- NfieldSdkException
A server side error occurred.
PutAsync(string, UpdateDataRetentionSettingsModel, CancellationToken)
Update the data retention settings for a survey
public virtual Task PutAsync(string surveyId, UpdateDataRetentionSettingsModel settings, CancellationToken cancellationToken = default)
Parameters
surveyIdstringThe id of the survey
settingsUpdateDataRetentionSettingsModelObject containing the data retention settings
cancellationTokenCancellationTokenA cancellation token that can be used by other objects or threads to receive notice of cancellation.
Returns
- Task
Survey Data Retention Settings updated
Exceptions
- NfieldSdkException
A server side error occurred.
ReadObjectResponseAsync<T>(HttpResponseMessage, IReadOnlyDictionary<string, IEnumerable<string>>, CancellationToken)
protected virtual Task<SurveysDataRetentionClient.ObjectResponseResult<T>> ReadObjectResponseAsync<T>(HttpResponseMessage response, IReadOnlyDictionary<string, IEnumerable<string>> headers, CancellationToken cancellationToken)
Parameters
responseHttpResponseMessageheadersIReadOnlyDictionary<string, IEnumerable<string>>cancellationTokenCancellationToken
Returns
Type Parameters
T