Class: Google::Apis::DisplayvideoV1::CustomBiddingModelReadinessState
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::CustomBiddingModelReadinessState
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v1/classes.rb,
lib/google/apis/displayvideo_v1/representations.rb,
lib/google/apis/displayvideo_v1/representations.rb
Overview
The custom bidding algorithm model readiness state for a single shared advertiser.
Instance Attribute Summary collapse
-
#advertiser_id ⇒ Fixnum
The unique ID of the relevant advertiser.
-
#readiness_state ⇒ String
The readiness state of custom bidding model.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomBiddingModelReadinessState
constructor
A new instance of CustomBiddingModelReadinessState.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomBiddingModelReadinessState
Returns a new instance of CustomBiddingModelReadinessState.
3851 3852 3853 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 3851 def initialize(**args) update!(**args) end |
Instance Attribute Details
#advertiser_id ⇒ Fixnum
The unique ID of the relevant advertiser.
Corresponds to the JSON property advertiserId
3844 3845 3846 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 3844 def advertiser_id @advertiser_id end |
#readiness_state ⇒ String
The readiness state of custom bidding model.
Corresponds to the JSON property readinessState
3849 3850 3851 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 3849 def readiness_state @readiness_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3856 3857 3858 3859 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 3856 def update!(**args) @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id) @readiness_state = args[:readiness_state] if args.key?(:readiness_state) end |