Module: AhoSdk
- Defined in:
- lib/aho_sdk/page.rb,
lib/aho_sdk.rb,
lib/aho_sdk/holder.rb,
lib/aho_sdk/issuer.rb,
lib/aho_sdk/system.rb,
lib/aho_sdk/account.rb,
lib/aho_sdk/schemas.rb,
lib/aho_sdk/version.rb,
lib/aho_sdk/verifier.rb,
lib/aho_sdk/cursor_page.rb,
lib/aho_sdk/http_client.rb,
lib/aho_sdk/unauthenticated.rb
Overview
Auto-generated by bin/generate_sdks.rb - DO NOT EDIT
Defined Under Namespace
Classes: Account, ApiError, AuthenticationError, BadRequestError, ConflictError, CursorPage, ForbiddenError, Holder, HttpClient, Issuer, NetworkError, NotFoundError, Page, RateLimitError, Schemas, ServerError, System, Unauthenticated, ValidationError, Verifier
Constant Summary collapse
- VERSION =
"0.1.1"
Class Method Summary collapse
-
.account(api_key:, base_url: "https://api.aho.com") ⇒ Account
Create a new Account client.
-
.holder(api_key:, base_url: "https://api.aho.com") ⇒ Holder
Create a new Holder client.
-
.issuer(api_key:, base_url: "https://api.aho.com") ⇒ Issuer
Create a new Issuer client.
-
.schemas(api_key:, base_url: "https://api.aho.com") ⇒ Schemas
Create a new Schemas client.
-
.system(api_key:, base_url: "https://api.aho.com") ⇒ System
Create a new System client.
-
.unauthenticated(base_url: "https://api.aho.com") ⇒ Unauthenticated
Create a new Unauthenticated client.
-
.verifier(api_key:, base_url: "https://api.aho.com") ⇒ Verifier
Create a new Verifier client.
Class Method Details
.account(api_key:, base_url: "https://api.aho.com") ⇒ Account
Create a new Account client
30 31 32 |
# File 'lib/aho_sdk.rb', line 30 def account(api_key:, base_url: "https://api.aho.com") Account.new(api_key: api_key, base_url: base_url) end |
.holder(api_key:, base_url: "https://api.aho.com") ⇒ Holder
Create a new Holder client
48 49 50 |
# File 'lib/aho_sdk.rb', line 48 def holder(api_key:, base_url: "https://api.aho.com") Holder.new(api_key: api_key, base_url: base_url) end |
.issuer(api_key:, base_url: "https://api.aho.com") ⇒ Issuer
Create a new Issuer client
66 67 68 |
# File 'lib/aho_sdk.rb', line 66 def issuer(api_key:, base_url: "https://api.aho.com") Issuer.new(api_key: api_key, base_url: base_url) end |
.schemas(api_key:, base_url: "https://api.aho.com") ⇒ Schemas
Create a new Schemas client
75 76 77 |
# File 'lib/aho_sdk.rb', line 75 def schemas(api_key:, base_url: "https://api.aho.com") Schemas.new(api_key: api_key, base_url: base_url) end |
.system(api_key:, base_url: "https://api.aho.com") ⇒ System
Create a new System client
39 40 41 |
# File 'lib/aho_sdk.rb', line 39 def system(api_key:, base_url: "https://api.aho.com") System.new(api_key: api_key, base_url: base_url) end |
.unauthenticated(base_url: "https://api.aho.com") ⇒ Unauthenticated
Create a new Unauthenticated client
83 84 85 |
# File 'lib/aho_sdk.rb', line 83 def unauthenticated(base_url: "https://api.aho.com") Unauthenticated.new(base_url: base_url) end |