Class: Google::Apis::RealtimebiddingV1::UrlRestriction

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/realtimebidding_v1/classes.rb,
lib/google/apis/realtimebidding_v1/representations.rb,
lib/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UrlRestriction

Returns a new instance of UrlRestriction.



1963
1964
1965
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1963

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

Instance Attribute Details

#end_dateGoogle::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, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type. TimeOfDay * google.type.DateTime * google.protobuf.Timestamp Corresponds to the JSON property endDate



1939
1940
1941
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1939

def end_date
  @end_date
end

#restriction_typeString

The restriction type for the specified URL. Corresponds to the JSON property restrictionType

Returns:

  • (String)


1944
1945
1946
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1944

def restriction_type
  @restriction_type
end

#start_dateGoogle::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, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type. TimeOfDay * google.type.DateTime * google.protobuf.Timestamp Corresponds to the JSON property startDate



1956
1957
1958
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1956

def start_date
  @start_date
end

#urlString

Required. The URL to use for applying the restriction on the user list. Corresponds to the JSON property url

Returns:

  • (String)


1961
1962
1963
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1961

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1968
1969
1970
1971
1972
1973
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1968

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