Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoNotification
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoNotification
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Instance Attribute Summary collapse
-
#buganizer_notification ⇒ Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoBuganizerNotification
Corresponds to the JSON property
buganizerNotification. -
#email_address ⇒ Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoAddress
Email address along with optional name and tokens.
-
#escalator_queue ⇒ String
Corresponds to the JSON property
escalatorQueue. -
#pubsub_topic ⇒ String
Corresponds to the JSON property
pubsubTopic. -
#request ⇒ Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoCustomSuspensionRequest
If the out-of-the-box email/pubsub notifications are not suitable and custom logic is required, fire a workflow containing all info needed to notify users to resume execution.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoNotification
constructor
A new instance of EnterpriseCrmEventbusProtoNotification.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoNotification
Returns a new instance of EnterpriseCrmEventbusProtoNotification.
1787 1788 1789 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1787 def initialize(**args) update!(**args) end |
Instance Attribute Details
#buganizer_notification ⇒ Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoBuganizerNotification
Corresponds to the JSON property buganizerNotification
1761 1762 1763 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1761 def buganizer_notification @buganizer_notification end |
#email_address ⇒ Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoAddress
Email address along with optional name and tokens. These tokens will be
substituted for the variables in the form of [var_name], where var_name
could be any string of no more than 32 bytes.
Corresponds to the JSON property emailAddress
1768 1769 1770 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1768 def email_address @email_address end |
#escalator_queue ⇒ String
Corresponds to the JSON property escalatorQueue
1773 1774 1775 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1773 def escalator_queue @escalator_queue end |
#pubsub_topic ⇒ String
Corresponds to the JSON property pubsubTopic
1778 1779 1780 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1778 def pubsub_topic @pubsub_topic end |
#request ⇒ Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoCustomSuspensionRequest
If the out-of-the-box email/pubsub notifications are not suitable and custom
logic is required, fire a workflow containing all info needed to notify users
to resume execution.
Corresponds to the JSON property request
1785 1786 1787 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1785 def request @request end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1792 1793 1794 1795 1796 1797 1798 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1792 def update!(**args) @buganizer_notification = args[:buganizer_notification] if args.key?(:buganizer_notification) @email_address = args[:email_address] if args.key?(:email_address) @escalator_queue = args[:escalator_queue] if args.key?(:escalator_queue) @pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic) @request = args[:request] if args.key?(:request) end |