Module: Increase
- Extended by:
- Forwardable
- Defined in:
- lib/increase.rb,
lib/increase/util.rb,
lib/increase/client.rb,
lib/increase/errors.rb,
lib/increase/version.rb,
lib/increase/resource.rb,
lib/increase/configuration.rb,
lib/increase/response_hash.rb,
lib/increase/resources/cards.rb,
lib/increase/resources/events.rb,
lib/increase/webhook/signature.rb,
lib/increase/resources/accounts.rb,
lib/increase/resources/transactions.rb,
lib/increase/resources/ach_transfers.rb,
lib/increase/resources/account_numbers.rb,
lib/increase/resources/account_transfers.rb,
lib/increase/resources/pending_transactions.rb
Defined Under Namespace
Modules: Util, Webhook Classes: AccountNumbers, AccountTransfers, Accounts, AchTransfers, ApiError, ApiMethodNotFoundError, Cards, Client, Configuration, EnvironmentMismatchError, Error, Events, IdempotencyConflictError, IdempotencyUnprocessableError, InsufficientPermissionsError, InternalServerError, InvalidApiKeyError, InvalidOperationError, InvalidParametersError, MalformedRequestError, ObjectNotFoundError, PendingTransactions, PrivateFeatureError, RateLimitedError, Resource, ResponseHash, Transactions, WebhookSignatureVerificationError
Constant Summary collapse
- PRODUCTION_URL =
"https://api.increase.com"- SANDBOX_URL =
"https://sandbox.increase.com"- ERROR_TYPES =
{ "api_method_not_found_error" => ApiMethodNotFoundError, "environment_mismatch_error" => EnvironmentMismatchError, "idempotency_conflict_error" => IdempotencyConflictError, "idempotency_unprocessable_error" => IdempotencyUnprocessableError, "insufficient_permissions_error" => InsufficientPermissionsError, "internal_server_error" => InternalServerError, "invalid_api_key_error" => InvalidApiKeyError, "invalid_operation_error" => InvalidOperationError, "invalid_parameters_error" => InvalidParametersError, "malformed_request_error" => MalformedRequestError, "object_not_found_error" => ObjectNotFoundError, "private_feature_error" => PrivateFeatureError, "rate_limited_error" => RateLimitedError }
- VERSION =
"0.1.2"
Class Attribute Summary collapse
-
.default_client ⇒ Object
Returns the value of attribute default_client.
Class Attribute Details
.default_client ⇒ Object
Returns the value of attribute default_client.
19 20 21 |
# File 'lib/increase.rb', line 19 def default_client @default_client end |