@@ -38,7 +38,7 @@ namespace Example
3838 {
3939
4040 // Configure OAuth2 access token for authorization: petstore_auth
41- Configuration .Default .AccessToken = ' YOUR_ACCESS_TOKEN' ;
41+ Configuration .Default .AccessToken = " YOUR_ACCESS_TOKEN" ;
4242
4343 var apiInstance = new PetApi ();
4444 var body = new Pet (); // Pet | Pet object that needs to be added to the store
@@ -102,7 +102,7 @@ namespace Example
102102 {
103103
104104 // Configure OAuth2 access token for authorization: petstore_auth
105- Configuration .Default .AccessToken = ' YOUR_ACCESS_TOKEN' ;
105+ Configuration .Default .AccessToken = " YOUR_ACCESS_TOKEN" ;
106106
107107 var apiInstance = new PetApi ();
108108 var petId = 789 ; // long? | Pet id to delete
@@ -168,7 +168,7 @@ namespace Example
168168 {
169169
170170 // Configure OAuth2 access token for authorization: petstore_auth
171- Configuration .Default .AccessToken = ' YOUR_ACCESS_TOKEN' ;
171+ Configuration .Default .AccessToken = " YOUR_ACCESS_TOKEN" ;
172172
173173 var apiInstance = new PetApi ();
174174 var status = new List <string >(); // List<string> | Status values that need to be considered for filter
@@ -233,7 +233,7 @@ namespace Example
233233 {
234234
235235 // Configure OAuth2 access token for authorization: petstore_auth
236- Configuration .Default .AccessToken = ' YOUR_ACCESS_TOKEN' ;
236+ Configuration .Default .AccessToken = " YOUR_ACCESS_TOKEN" ;
237237
238238 var apiInstance = new PetApi ();
239239 var tags = new List <string >(); // List<string> | Tags to filter by
@@ -298,9 +298,9 @@ namespace Example
298298 {
299299
300300 // Configure API key authorization: api_key
301- Configuration .Default .ApiKey .Add (' api_key' , ' YOUR_API_KEY' );
301+ Configuration .Default .ApiKey .Add (" api_key" , " YOUR_API_KEY" );
302302 // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
303- // Configuration.Default.ApiKeyPrefix.Add(' api_key', ' Bearer' );
303+ // Configuration.Default.ApiKeyPrefix.Add(" api_key", " Bearer" );
304304
305305 var apiInstance = new PetApi ();
306306 var petId = 789 ; // long? | ID of pet to return
@@ -365,7 +365,7 @@ namespace Example
365365 {
366366
367367 // Configure OAuth2 access token for authorization: petstore_auth
368- Configuration .Default .AccessToken = ' YOUR_ACCESS_TOKEN' ;
368+ Configuration .Default .AccessToken = " YOUR_ACCESS_TOKEN" ;
369369
370370 var apiInstance = new PetApi ();
371371 var body = new Pet (); // Pet | Pet object that needs to be added to the store
@@ -429,7 +429,7 @@ namespace Example
429429 {
430430
431431 // Configure OAuth2 access token for authorization: petstore_auth
432- Configuration .Default .AccessToken = ' YOUR_ACCESS_TOKEN' ;
432+ Configuration .Default .AccessToken = " YOUR_ACCESS_TOKEN" ;
433433
434434 var apiInstance = new PetApi ();
435435 var petId = 789 ; // long? | ID of pet that needs to be updated
@@ -497,7 +497,7 @@ namespace Example
497497 {
498498
499499 // Configure OAuth2 access token for authorization: petstore_auth
500- Configuration .Default .AccessToken = ' YOUR_ACCESS_TOKEN' ;
500+ Configuration .Default .AccessToken = " YOUR_ACCESS_TOKEN" ;
501501
502502 var apiInstance = new PetApi ();
503503 var petId = 789 ; // long? | ID of pet to update
0 commit comments