Class: Google::Apis::CesV1::InstagramCredentials
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::InstagramCredentials
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ces_v1/classes.rb,
lib/google/apis/ces_v1/representations.rb,
lib/google/apis/ces_v1/representations.rb
Overview
Ephemeral Meta credentials for Instagram native integration.
Instance Attribute Summary collapse
-
#auth_code ⇒ String
Required.
-
#conversation_profile_id ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstagramCredentials
constructor
A new instance of InstagramCredentials.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstagramCredentials
Returns a new instance of InstagramCredentials.
4287 4288 4289 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4287 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auth_code ⇒ String
Required. The Meta auth code provided by the embedded signup flow.
Corresponds to the JSON property authCode
4280 4281 4282 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4280 def auth_code @auth_code end |
#conversation_profile_id ⇒ String
Optional. The Conversation Profile ID to use for the deployment.
Corresponds to the JSON property conversationProfileId
4285 4286 4287 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4285 def conversation_profile_id @conversation_profile_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4292 4293 4294 4295 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4292 def update!(**args) @auth_code = args[:auth_code] if args.key?(:auth_code) @conversation_profile_id = args[:conversation_profile_id] if args.key?(:conversation_profile_id) end |