Module: VectorizerAI
- Defined in:
- lib/vectorizer_ai/version.rb,
lib/vectorizer_ai.rb,
lib/vectorizer_ai/api_error.rb,
lib/vectorizer_ai/api_client.rb,
lib/vectorizer_ai/configuration.rb,
lib/vectorizer_ai/api/account_api.rb,
lib/vectorizer_ai/api/vectorization_api.rb,
lib/vectorizer_ai/models/error_response.rb,
lib/vectorizer_ai/models/error_response_error.rb,
lib/vectorizer_ai/models/delete_image_response.rb,
lib/vectorizer_ai/models/account_status_response.rb
Overview
#Vectorizer.AI API
#OpenAPI 3.0 specification for the Vectorizer.AI image vectorization API. Authenticate with HTTP Basic auth, using your API Id as the username and your API Secret as the password.
The version of the OpenAPI document: 1.0.0 Contact: support@vectorizer.ai Generated by: openapi-generator.tech Generator version: 7.6.0
Defined Under Namespace
Classes: AccountApi, AccountStatusResponse, ApiClient, ApiError, Configuration, DeleteImageResponse, ErrorResponse, ErrorResponseError, VectorizationApi
Constant Summary collapse
- VERSION =
'1.0.1'
Class Method Summary collapse
-
.configure ⇒ Object
Customize default settings for the SDK using block.
Class Method Details
.configure ⇒ Object
Customize default settings for the SDK using block.
VectorizerAI.configure do |config|
config.username = "xxx"
config.password = "xxx"
end
If no block given, return the default Configuration object.
37 38 39 40 41 42 43 |
# File 'lib/vectorizer_ai.rb', line 37 def configure if block_given? yield(Configuration.default) else Configuration.default end end |