Update Company Information

var client = new RestClient("https://apitest.nilvera.com/general/Company");
client.Timeout = -1;
var request = new RestRequest(Method.PUT);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"{"TaxOffice": "string",
"Address": "string",
"District": "string",
"City": "string",
"Country": "string",
"PostalCode": "string",
"PhoneNumber": "string",
"Fax": "string",
"Email": "string",
"WebSite": "string",
"PayeeFinancialAccountID": "string",
"PaymentMeansChannelCode": "string",
"PaymentMeansCode": "ODEMETIPIMUHTELIF"}";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);