Sha256: 4ebf6a43ad7aa0b37628481bea77886b050b12f4aa0ee984cb8949f61a9dcdfe

Contents?: true

Size: 725 Bytes

Versions: 6

Compression:

Stored size: 725 Bytes

Contents

module OpenActive
  module Models
    #
    # Error Use Case: The `@id` of the `seller` included in the request was not found within the Booking System.
    #
    # 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 SellerNotFoundError < ::OpenActive::Models::OpenBookingError
      # @!attribute type
      # @return [String]
      def type
        "SellerNotFoundError"
      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

Version Path
openactive-0.5.0 lib/openactive/models/seller_not_found_error.rb
openactive-0.4.0 lib/openactive/models/seller_not_found_error.rb
openactive-0.3.0 lib/openactive/models/seller_not_found_error.rb
openactive-0.2.2 lib/openactive/models/seller_not_found_error.rb
openactive-0.2.1 lib/openactive/models/seller_not_found_error.rb
openactive-0.2.0 lib/openactive/models/seller_not_found_error.rb