Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoBuganizerNotification

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnterpriseCrmEventbusProtoBuganizerNotification

Returns a new instance of EnterpriseCrmEventbusProtoBuganizerNotification.



378
379
380
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 378

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#assignee_email_addressString

Whom to assign the new bug. Optional. Corresponds to the JSON property assigneeEmailAddress

Returns:

  • (String)


361
362
363
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 361

def assignee_email_address
  @assignee_email_address
end

#component_idFixnum

ID of the buganizer component within which to create a new issue. Required. Corresponds to the JSON property componentId

Returns:

  • (Fixnum)


366
367
368
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 366

def component_id
  @component_id
end

#template_idFixnum

ID of the buganizer template to use. Optional. Corresponds to the JSON property templateId

Returns:

  • (Fixnum)


371
372
373
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 371

def template_id
  @template_id
end

#titleString

Title of the issue to be created. Required. Corresponds to the JSON property title

Returns:

  • (String)


376
377
378
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 376

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



383
384
385
386
387
388
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 383

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