Sha256: 82cd40cdcc69d68b802b8c1ce515a612041a2763ca487ca2a135b9259d0338ba
Contents?: true
Size: 770 Bytes
Versions: 6
Compression:
Stored size: 770 Bytes
Contents
module OpenActive module Models # # Error Use Case: The `orderItemIntakeFormResponse` is missing fields that are specified as `valueRequired` within the `orderItemIntakeForm`. # # 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 IncompleteIntakeFormError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "IncompleteIntakeFormError" 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