public Task SetAsync(
     AccountFlagType type,
     Dictionary <string, string> headers = default,
     CancellationToken ct = default)
 {
     return(_factory.PutAsync(_host + "/Account/Flags/v1/Set", null, new { type }, headers, ct));
 }
Esempio n. 2
0
 public Task <AccountSetting> SetActivityIndustryAsync(
     AccountSettingActivityIndustry industry,
     Dictionary <string, string> headers = default,
     CancellationToken ct = default)
 {
     return(_factory.PutAsync <AccountSetting>(
                _host + "/Account/Settings/v1/SetActivityIndustry", null, new { industry }, headers, ct));
 }