Sha256: 45512ef7ddd8d9de4430e3bd29f07113d97960f0d7642fa9894279940e08216d
Contents?: true
Size: 871 Bytes
Versions: 6
Compression:
Stored size: 871 Bytes
Contents
module OpenActive module Models # # Error Use Case: The Booking System recognises a PATCH request but the request object contains properties that the Broker is not permitted to update. Custom namespace properties are always excluded from consideration. # # 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 PatchContainsExcessivePropertiesError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "PatchContainsExcessivePropertiesError" 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