Class: Google::Apis::DisplayvideoV3::AdPolicyTopicAppealInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/displayvideo_v3/classes.rb,
lib/google/apis/displayvideo_v3/representations.rb,
lib/google/apis/displayvideo_v3/representations.rb

Overview

Information on how to appeal a policy decision.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AdPolicyTopicAppealInfo

Returns a new instance of AdPolicyTopicAppealInfo.



426
427
428
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 426

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

Instance Attribute Details

Only available when appeal_type is APPEAL_FORM. Corresponds to the JSON property appealFormLink

Returns:

  • (String)


418
419
420
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 418

def appeal_form_link
  @appeal_form_link
end

#appeal_typeString

Whether the decision can be appealed through a self-service appeal or an appeal form. Corresponds to the JSON property appealType

Returns:

  • (String)


424
425
426
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 424

def appeal_type
  @appeal_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



431
432
433
434
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 431

def update!(**args)
  @appeal_form_link = args[:appeal_form_link] if args.key?(:appeal_form_link)
  @appeal_type = args[:appeal_type] if args.key?(:appeal_type)
end