Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoBuganizerNotification
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoBuganizerNotification
- 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
-
#assignee_email_address ⇒ String
Whom to assign the new bug.
-
#component_id ⇒ Fixnum
ID of the buganizer component within which to create a new issue.
-
#template_id ⇒ Fixnum
ID of the buganizer template to use.
-
#title ⇒ String
Title of the issue to be created.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoBuganizerNotification
constructor
A new instance of EnterpriseCrmEventbusProtoBuganizerNotification.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoBuganizerNotification
Returns a new instance of EnterpriseCrmEventbusProtoBuganizerNotification.
380 381 382 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 380 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assignee_email_address ⇒ String
Whom to assign the new bug. Optional.
Corresponds to the JSON property assigneeEmailAddress
363 364 365 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 363 def assignee_email_address @assignee_email_address end |
#component_id ⇒ Fixnum
ID of the buganizer component within which to create a new issue. Required.
Corresponds to the JSON property componentId
368 369 370 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 368 def component_id @component_id end |
#template_id ⇒ Fixnum
ID of the buganizer template to use. Optional.
Corresponds to the JSON property templateId
373 374 375 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 373 def template_id @template_id end |
#title ⇒ String
Title of the issue to be created. Required.
Corresponds to the JSON property title
378 379 380 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 378 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
385 386 387 388 389 390 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 385 def update!(**args) @assignee_email_address = args[:assignee_email_address] if args.key?(:assignee_email_address) @component_id = args[:component_id] if args.key?(:component_id) @template_id = args[:template_id] if args.key?(:template_id) @title = args[:title] if args.key?(:title) end |