Module: SwaggerClient

Defined in:
lib/swagger_client/version.rb,
lib/swagger_client.rb,
lib/swagger_client/api_error.rb,
lib/swagger_client/api_client.rb,
lib/swagger_client/models/sepa.rb,
lib/swagger_client/models/error.rb,
lib/swagger_client/models/order.rb,
lib/swagger_client/api/order_api.rb,
lib/swagger_client/configuration.rb,
lib/swagger_client/models/amount.rb,
lib/swagger_client/models/address.rb,
lib/swagger_client/models/airline.rb,
lib/swagger_client/models/billing.rb,
lib/swagger_client/models/contact.rb,
lib/swagger_client/models/lodging.rb,
lib/swagger_client/models/pay_pal.rb,
lib/swagger_client/api/payment_api.rb,
lib/swagger_client/models/shipping.rb,
lib/swagger_client/models/frequency.rb,
lib/swagger_client/models/car_rental.rb,
lib/swagger_client/models/expiration.rb,
lib/swagger_client/models/basket_item.rb,
lib/swagger_client/models/payment_card.rb,
lib/swagger_client/models/sepa_mandate.rb,
lib/swagger_client/models/client_locale.rb,
lib/swagger_client/models/error_details.rb,
lib/swagger_client/models/response_type.rb,
lib/swagger_client/models/error_response.rb,
lib/swagger_client/models/payment_method.rb,
lib/swagger_client/models/processor_data.rb,
lib/swagger_client/models/split_shipment.rb,
lib/swagger_client/api/authentication_api.rb,
lib/swagger_client/models/transaction_type.rb,
lib/swagger_client/models/amount_components.rb,
lib/swagger_client/models/stored_credential.rb,
lib/swagger_client/models/installment_options.rb,
lib/swagger_client/models/payment_url_request.rb,
lib/swagger_client/models/primary_transaction.rb,
lib/swagger_client/models/airline_travel_route.rb,
lib/swagger_client/models/payment_url_response.rb,
lib/swagger_client/models/transaction_response.rb,
lib/swagger_client/models/access_token_response.rb,
lib/swagger_client/models/lodging_extra_charges.rb,
lib/swagger_client/models/secondary_transaction.rb,
lib/swagger_client/models/car_rental_extra_charges.rb,
lib/swagger_client/models/payment_schedules_request.rb,
lib/swagger_client/models/payment_schedules_response.rb,
lib/swagger_client/models/transaction_error_response.rb,
lib/swagger_client/models/industry_specific_extensions.rb,
lib/swagger_client/models/card_verifications_transaction.rb,
lib/swagger_client/models/airline_ancillary_service_category.rb,
lib/swagger_client/models/payment_card_authentication_result.rb,
lib/swagger_client/models/payment_card_authentication_request.rb,
lib/swagger_client/models/authentication_response_verification.rb,
lib/swagger_client/models/primary_transaction_additional_details.rb,
lib/swagger_client/models/transaction_response_authentication_redirect.rb,
lib/swagger_client/models/transaction_response_authentication_redirect_params.rb

Overview

#Payment Gateway API Specification

#Payment Gateway API for payment processing.

OpenAPI spec version: 0.0.1

Generated by: github.com/swagger-api/swagger-codegen.git Swagger Codegen version: unset

Defined Under Namespace

Classes: AccessTokenResponse, Address, Airline, AirlineAncillaryServiceCategory, AirlineTravelRoute, Amount, AmountComponents, ApiClient, ApiError, AuthenticationApi, AuthenticationResponseVerification, BasketItem, Billing, CarRental, CarRentalExtraCharges, CardVerificationsTransaction, ClientLocale, Configuration, Contact, Error, ErrorDetails, ErrorResponse, Expiration, Frequency, IndustrySpecificExtensions, InstallmentOptions, Lodging, LodgingExtraCharges, Order, OrderApi, PayPal, PaymentApi, PaymentCard, PaymentCardAuthenticationRequest, PaymentCardAuthenticationResult, PaymentMethod, PaymentSchedulesRequest, PaymentSchedulesResponse, PaymentUrlRequest, PaymentUrlResponse, PrimaryTransaction, PrimaryTransactionAdditionalDetails, ProcessorData, ResponseType, SecondaryTransaction, Sepa, SepaMandate, Shipping, SplitShipment, StoredCredential, TransactionErrorResponse, TransactionResponse, TransactionResponseAuthenticationRedirect, TransactionResponseAuthenticationRedirectParams, TransactionType

Constant Summary collapse

VERSION =
"1.0.1"

Class Method Summary collapse

Class Method Details

.configureObject

Customize default settings for the SDK using block.

SwaggerClient.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.



83
84
85
86
87
88
89
# File 'lib/swagger_client.rb', line 83

def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end