Sha256: 175612024cd77d80971f92ef78377f191dd570b8378ba46af2a971a018befd9b
Contents?: true
Size: 745 Bytes
Versions: 6
Compression:
Stored size: 745 Bytes
Contents
module OpenActive module Models # # Error Use Case: The `@id` provided for the `acceptedOffer` is not a URL which corresponds to an `Offer` within the Booking System. # # This type is derived from https://schema.org/Thing, which means that any of this type's properties within schema.org may also be used. class UnknownOfferError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "UnknownOfferError" end # @return [String] define_property :name, as: "name", types: [ "string", ] # @return [int,nil] define_property :status_code, as: "statusCode", types: [ "int", "null", ] end end end
Version data entries
6 entries across 6 versions & 1 rubygems