Sha256: 0fb8c3c5b98d57b03bb094122007bb4576f3d66c3662e9ab87e199060d294980
Contents?: true
Size: 804 Bytes
Versions: 6
Compression:
Stored size: 804 Bytes
Contents
module OpenActive module Models # # Error Use Case: The Booking System is unable for technical reasons to create an `Order` where the data provided to it is sufficient to allow it to do so. # # 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 TemporarilyUnableToCreateOrderError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "TemporarilyUnableToCreateOrderError" 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