Sha256: a0f0c6c07185170b35f62c20bfd908cd54894715e27d4c556c5fa0cc5e7010fb
Contents?: true
Size: 677 Bytes
Versions: 6
Compression:
Stored size: 677 Bytes
Contents
module OpenActive module Models # # Error Use Case: An `Order` has been soft-deleted by an Order Deletion request. # # 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 GoneError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "GoneError" 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