Sha256: 76f5a9cbdfa6fbfd4ec49bf12fd2d58b196d3aeffc3580ed438e44c5ba999b44
Contents?: true
Size: 684 Bytes
Versions: 6
Compression:
Stored size: 684 Bytes
Contents
module OpenActive module Models # # Error Use Case: The Booking System is rate-limiting the Broker. # # 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 TooManyRequestsError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "TooManyRequestsError" 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