Class: Google::Apis::RealtimebiddingV1::UrlRestriction
- Inherits:
-
Object
- Object
- Google::Apis::RealtimebiddingV1::UrlRestriction
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/realtimebidding_v1/classes.rb,
generated/google/apis/realtimebidding_v1/representations.rb,
generated/google/apis/realtimebidding_v1/representations.rb
Overview
Represents the URL restriction (for the URL captured by the pixel callback) for a user list.
Instance Attribute Summary collapse
-
#end_date ⇒ Google::Apis::RealtimebiddingV1::Date
Represents a whole or partial calendar date, such as a birthday.
-
#restriction_type ⇒ String
The restriction type for the specified URL.
-
#start_date ⇒ Google::Apis::RealtimebiddingV1::Date
Represents a whole or partial calendar date, such as a birthday.
-
#url ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UrlRestriction
constructor
A new instance of UrlRestriction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UrlRestriction
Returns a new instance of UrlRestriction.
1636 1637 1638 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1636 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_date ⇒ Google::Apis::RealtimebiddingV1::Date
Represents a whole or partial calendar date, such as a birthday. The time of
day and time zone are either specified elsewhere or are insignificant. The
date is relative to the Gregorian Calendar. This can represent one of the
following: * A full date, with non-zero year, month, and day values * A month
and day value, with a zero year, such as an anniversary * A year on its own,
with zero month and day values * A year and month value, with a zero day, such
as a credit card expiration date Related types are google.type.TimeOfDay and
google.protobuf.Timestamp
.
Corresponds to the JSON property endDate
1612 1613 1614 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1612 def end_date @end_date end |
#restriction_type ⇒ String
The restriction type for the specified URL.
Corresponds to the JSON property restrictionType
1617 1618 1619 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1617 def restriction_type @restriction_type end |
#start_date ⇒ Google::Apis::RealtimebiddingV1::Date
Represents a whole or partial calendar date, such as a birthday. The time of
day and time zone are either specified elsewhere or are insignificant. The
date is relative to the Gregorian Calendar. This can represent one of the
following: * A full date, with non-zero year, month, and day values * A month
and day value, with a zero year, such as an anniversary * A year on its own,
with zero month and day values * A year and month value, with a zero day, such
as a credit card expiration date Related types are google.type.TimeOfDay and
google.protobuf.Timestamp
.
Corresponds to the JSON property startDate
1629 1630 1631 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1629 def start_date @start_date end |
#url ⇒ String
Required. The URL to use for applying the restriction on the user list.
Corresponds to the JSON property url
1634 1635 1636 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1634 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1641 1642 1643 1644 1645 1646 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1641 def update!(**args) @end_date = args[:end_date] if args.key?(:end_date) @restriction_type = args[:restriction_type] if args.key?(:restriction_type) @start_date = args[:start_date] if args.key?(:start_date) @url = args[:url] if args.key?(:url) end |