Sha256: d862c4bb5293847c4eb6f97d4927adf656ee6f96a90176ab4c37b12cfef430cd
Contents?: true
Size: 692 Bytes
Versions: 6
Compression:
Stored size: 692 Bytes
Contents
module OpenActive module Models # # Error Use Case: The Booking System has no `Order` matching the one requested. # # 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 UnknownOrderError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "UnknownOrderError" 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