Sha256: f94b070a1af0e79d2fc5d0f893581e497cb08b2ce0ee0b641143a6fbc86ac7fe
Contents?: true
Size: 1019 Bytes
Versions: 4
Compression:
Stored size: 1019 Bytes
Contents
module OpenActive module Models class OpenBookingError < ::OpenActive::Models::Schema::Thing # @!attribute type # @return [String] def type "OpenBookingError" end # @return [String] define_property :name, as: "name", types: [ "string", ] # @return [String] define_property :description, as: "description", types: [ "string", ] # @return [URI] define_property :instance, as: "instance", types: [ "URI", ] # @return [Array<String>] define_property :invalid_params, as: "invalidParams", types: [ "string[]", ] # @return [String] define_property :method, as: "method", types: [ "string", ] # @return [String] define_property :request_id, as: "requestId", types: [ "string", ] # @return [int,nil] define_property :status_code, as: "statusCode", types: [ "int", "null", ] end end end
Version data entries
4 entries across 4 versions & 1 rubygems