Sha256: ef3b963e42b4d2f091399719ab94755ba015e6647003361c1cff11723ebad306
Contents?: true
Size: 705 Bytes
Versions: 6
Compression:
Stored size: 705 Bytes
Contents
module OpenActive module Models # # Error Use Case: The Broker supplied an invalid API key, 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 InvalidAPITokenError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "InvalidAPITokenError" 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