Class: Google::Apis::ContentV2_1::PaymentServiceProviderLinkInfo
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::PaymentServiceProviderLinkInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb
Overview
Additional information required for PAYMENT_SERVICE_PROVIDER link type.
Instance Attribute Summary collapse
-
#external_account_business_country ⇒ String
The business country of the merchant account as identified by the third party service provider.
-
#external_account_id ⇒ String
The id used by the third party service provider to identify the merchant.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PaymentServiceProviderLinkInfo
constructor
A new instance of PaymentServiceProviderLinkInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PaymentServiceProviderLinkInfo
Returns a new instance of PaymentServiceProviderLinkInfo.
7508 7509 7510 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 7508 def initialize(**args) update!(**args) end |
Instance Attribute Details
#external_account_business_country ⇒ String
The business country of the merchant account as identified by the third party
service provider.
Corresponds to the JSON property externalAccountBusinessCountry
7501 7502 7503 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 7501 def external_account_business_country @external_account_business_country end |
#external_account_id ⇒ String
The id used by the third party service provider to identify the merchant.
Corresponds to the JSON property externalAccountId
7506 7507 7508 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 7506 def external_account_id @external_account_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7513 7514 7515 7516 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 7513 def update!(**args) @external_account_business_country = args[:external_account_business_country] if args.key?(:external_account_business_country) @external_account_id = args[:external_account_id] if args.key?(:external_account_id) end |