forked from loafle/openapi-generator-original
* add apex petstore samples, shell scripts, batch files * add wording "beta" to Apex help
8 lines
287 B
OpenEdge ABL
8 lines
287 B
OpenEdge ABL
public class SwagClient extends Swagger.ApiClient {
|
|
public SwagClient() {
|
|
basePath = 'http://petstore.swagger.io/v2';
|
|
authentications.put('api_key', new Swagger.ApiKeyHeaderAuth('api_key'));
|
|
authentications.put('petstore_auth', new Swagger.OAuth2());
|
|
}
|
|
}
|