Sha256: f79cdd6ee1c2e0c28d8d742be8aa592f6cc6398acd63f162ff95b1e822b98dba
Contents?: true
Size: 709 Bytes
Versions: 6
Compression:
Stored size: 709 Bytes
Contents
module OpenActive module Models # # Error Use Case: The `@id` of at least one of the provided `OrderItem`s is invalid. # # 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 OrderItemIdInvalidError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "OrderItemIdInvalidError" 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