Class: Google::Apis::DisplayvideoV3::CustomBiddingAlgorithmRules
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::CustomBiddingAlgorithmRules
- 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
A single custom bidding algorithm rules.
Instance Attribute Summary collapse
-
#active ⇒ Boolean
(also: #active?)
Output only.
-
#create_time ⇒ String
Output only.
-
#custom_bidding_algorithm_id ⇒ Fixnum
Output only.
-
#custom_bidding_algorithm_rules_id ⇒ Fixnum
Output only.
-
#error ⇒ Google::Apis::DisplayvideoV3::CustomBiddingAlgorithmRulesError
An error message for a CustomBiddingAlgorithmRules resource.
-
#name ⇒ String
Output only.
-
#rules ⇒ Google::Apis::DisplayvideoV3::CustomBiddingAlgorithmRulesRef
The reference to the uploaded AlgorithmRules file.
-
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomBiddingAlgorithmRules
constructor
A new instance of CustomBiddingAlgorithmRules.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomBiddingAlgorithmRules
Returns a new instance of CustomBiddingAlgorithmRules.
4826 4827 4828 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4826 def initialize(**args) update!(**args) end |
Instance Attribute Details
#active ⇒ Boolean Also known as: active?
Output only. Whether the rules resource is currently being used for scoring by
the parent algorithm.
Corresponds to the JSON property active
4786 4787 4788 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4786 def active @active end |
#create_time ⇒ String
Output only. The time when the rules resource was created.
Corresponds to the JSON property createTime
4792 4793 4794 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4792 def create_time @create_time end |
#custom_bidding_algorithm_id ⇒ Fixnum
Output only. The unique ID of the custom bidding algorithm that the rules
resource belongs to.
Corresponds to the JSON property customBiddingAlgorithmId
4798 4799 4800 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4798 def custom_bidding_algorithm_id @custom_bidding_algorithm_id end |
#custom_bidding_algorithm_rules_id ⇒ Fixnum
Output only. The unique ID of the rules resource.
Corresponds to the JSON property customBiddingAlgorithmRulesId
4803 4804 4805 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4803 def custom_bidding_algorithm_rules_id @custom_bidding_algorithm_rules_id end |
#error ⇒ Google::Apis::DisplayvideoV3::CustomBiddingAlgorithmRulesError
An error message for a CustomBiddingAlgorithmRules resource.
Corresponds to the JSON property error
4808 4809 4810 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4808 def error @error end |
#name ⇒ String
Output only. The resource name of the rules resource.
Corresponds to the JSON property name
4813 4814 4815 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4813 def name @name end |
#rules ⇒ Google::Apis::DisplayvideoV3::CustomBiddingAlgorithmRulesRef
The reference to the uploaded AlgorithmRules file. Retrieve the location to
upload new AlgorithmRules file to using customBiddingAlgorithms.uploadRules.
Corresponds to the JSON property rules
4819 4820 4821 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4819 def rules @rules end |
#state ⇒ String
Output only. The state of the rules resource.
Corresponds to the JSON property state
4824 4825 4826 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4824 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4831 def update!(**args) @active = args[:active] if args.key?(:active) @create_time = args[:create_time] if args.key?(:create_time) @custom_bidding_algorithm_id = args[:custom_bidding_algorithm_id] if args.key?(:custom_bidding_algorithm_id) @custom_bidding_algorithm_rules_id = args[:custom_bidding_algorithm_rules_id] if args.key?(:custom_bidding_algorithm_rules_id) @error = args[:error] if args.key?(:error) @name = args[:name] if args.key?(:name) @rules = args[:rules] if args.key?(:rules) @state = args[:state] if args.key?(:state) end |