Sha256: c154eb7e63ac1c5fe942705c165c293e5e502c28272f0736eeeb691f6ac425ac
Contents?: true
Size: 750 Bytes
Versions: 6
Compression:
Stored size: 750 Bytes
Contents
module OpenActive module Models # # Error Use Case: The specific `OrderItem`s against which this error is emitted are not able to be booked together. # # 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 OpportunityIsInConflictError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "OpportunityIsInConflictError" 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