Sha256: 25f9ad52dcf76e1069e48741d197d8517b7ef5b12a5941cdd46ce04c642720c4
Contents?: true
Size: 721 Bytes
Versions: 6
Compression:
Stored size: 721 Bytes
Contents
module OpenActive module Models # # Error Use Case: The Booking System has no endpoint 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 UnknownOrIncorrectEndpointError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "UnknownOrIncorrectEndpointError" 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