Sha256: d66c9d91c1217669d0b6d6efb6c09b6b332938983b7e82ae9760780969b324fc
Contents?: true
Size: 758 Bytes
Versions: 6
Compression:
Stored size: 758 Bytes
Contents
module OpenActive module Models # # Error Use Case: The `attendeeDetailsRequired` properties of the `attendee` are not supplied within a `Person` object. # # 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 IncompleteAttendeeDetailsError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "IncompleteAttendeeDetailsError" 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