Sha256: 442d69440eb42399a0d11d281b2c1fb9f61f0bd947ff5def48b389f1bf260de6
Contents?: true
Size: 718 Bytes
Versions: 6
Compression:
Stored size: 718 Bytes
Contents
module OpenActive module Models # # Error Use Case: A generic internal error type, which is not intended to be used directly. # # 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 InternalOpenBookingError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "InternalOpenBookingError" 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