Sha256: e2ad8446541e7653aca8ce11a8ea7dbe5c8aaaeb4250ef93a7320da6c91c5012
Contents?: true
Size: 725 Bytes
Versions: 6
Compression:
Stored size: 725 Bytes
Contents
module OpenActive module Models # # Error Use Case: There is a missing `acceptedOffer` or `orderedItem` property on the `OrderItem`. # # 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 IncompleteOrderItemError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "IncompleteOrderItemError" 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