Sha256: 9522d203163f582ee922e425acb75405a610471d53739420a954fa53b9f9d43f
Contents?: true
Size: 750 Bytes
Versions: 6
Compression:
Stored size: 750 Bytes
Contents
module OpenActive module Models # # Error Use Case: The Broker supplied an invalid set of authorization details, either malformed or expired. # # 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 InvalidAuthorizationDetailsError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "InvalidAuthorizationDetailsError" 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