Sha256: bfde65b00dee7f8d6304468680b1c5ec8fcd4208c9ed74df7f928fafce0b1c0e
Contents?: true
Size: 687 Bytes
Versions: 6
Compression:
Stored size: 687 Bytes
Contents
module OpenActive module Models # # Error Use Case: The Booking System does not have the generic resource specified. # # 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 NotFoundError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "NotFoundError" 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