Sha256: 532af67758e8aa98df5c61f3abff2f238d958e97f67c59222b11300d7ab488f6
Contents?: true
Size: 712 Bytes
Versions: 6
Compression:
Stored size: 712 Bytes
Contents
module OpenActive module Models # # Error Use Case: An unexpected exception has been thrown by the application. # # 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 InternalApplicationError < ::OpenActive::Models::InternalOpenBookingError # @!attribute type # @return [String] def type "InternalApplicationError" 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