Class: Google::Apis::WalletobjectsV1::TicketRestrictions
- Inherits:
-
Object
- Object
- Google::Apis::WalletobjectsV1::TicketRestrictions
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/walletobjects_v1/classes.rb,
lib/google/apis/walletobjects_v1/representations.rb,
lib/google/apis/walletobjects_v1/representations.rb
Instance Attribute Summary collapse
-
#other_restrictions ⇒ Google::Apis::WalletobjectsV1::LocalizedString
Extra restrictions that don't fall under the "route" or "time" categories.
-
#route_restrictions ⇒ Google::Apis::WalletobjectsV1::LocalizedString
Restrictions about routes that may be taken.
-
#route_restrictions_details ⇒ Google::Apis::WalletobjectsV1::LocalizedString
More details about the above
routeRestrictions
. -
#time_restrictions ⇒ Google::Apis::WalletobjectsV1::LocalizedString
Restrictions about times this ticket may be used.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TicketRestrictions
constructor
A new instance of TicketRestrictions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TicketRestrictions
Returns a new instance of TicketRestrictions.
7700 7701 7702 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7700 def initialize(**args) update!(**args) end |
Instance Attribute Details
#other_restrictions ⇒ Google::Apis::WalletobjectsV1::LocalizedString
Extra restrictions that don't fall under the "route" or "time" categories.
Corresponds to the JSON property otherRestrictions
7682 7683 7684 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7682 def other_restrictions @other_restrictions end |
#route_restrictions ⇒ Google::Apis::WalletobjectsV1::LocalizedString
Restrictions about routes that may be taken. For example, this may be the
string "Reserved CrossCountry trains only".
Corresponds to the JSON property routeRestrictions
7688 7689 7690 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7688 def route_restrictions @route_restrictions end |
#route_restrictions_details ⇒ Google::Apis::WalletobjectsV1::LocalizedString
More details about the above routeRestrictions
.
Corresponds to the JSON property routeRestrictionsDetails
7693 7694 7695 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7693 def route_restrictions_details @route_restrictions_details end |
#time_restrictions ⇒ Google::Apis::WalletobjectsV1::LocalizedString
Restrictions about times this ticket may be used.
Corresponds to the JSON property timeRestrictions
7698 7699 7700 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7698 def time_restrictions @time_restrictions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7705 7706 7707 7708 7709 7710 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7705 def update!(**args) @other_restrictions = args[:other_restrictions] if args.key?(:other_restrictions) @route_restrictions = args[:route_restrictions] if args.key?(:route_restrictions) @route_restrictions_details = args[:route_restrictions_details] if args.key?(:route_restrictions_details) @time_restrictions = args[:time_restrictions] if args.key?(:time_restrictions) end |