Sha256: 26bfed7944743d2477b7cc3908b2434640bb6af00fbe535bde616bc37ee23ed6
Contents?: true
Size: 690 Bytes
Versions: 6
Compression:
Stored size: 690 Bytes
Contents
module OpenActive module Models # # Error Use Case: The Broker did not supply any form of authentication. # # 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 UnauthenticatedError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "UnauthenticatedError" 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