Sha256: 16d93b4cd986dca4aaa3a3caf0b58690c74e5100b8a7caa9f7d8cd4de18db381
Contents?: true
Size: 816 Bytes
Versions: 6
Compression:
Stored size: 816 Bytes
Contents
module OpenActive module Models # # Error Use Case: The `name` property is not supplied within the `Organisation` object describing the Broker; or the `broker` property supplied is not a valid `Organisation` object. # # 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 IncompleteBrokerDetailsError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "IncompleteBrokerDetailsError" 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