Sha256: d90f1e703746178225206cac7d1ead9795d8866efeda1ce3356a1042ead01928
Contents?: true
Size: 820 Bytes
Versions: 6
Compression:
Stored size: 820 Bytes
Contents
module OpenActive module Models # # Error Use Case: The `email` address of the Customer is not supplied within a `Person` object; or the `customer` property supplied is not a valid `Person` or `Organization` 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 IncompleteCustomerDetailsError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "IncompleteCustomerDetailsError" 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