Sha256: 772e93d3f46d9650a1b2ec4bfbeb60cb45aa7fe6fb985413ae2661360d5a2667
Contents?: true
Size: 732 Bytes
Versions: 6
Compression:
Stored size: 732 Bytes
Contents
module OpenActive module Models # # Error Use Case: The `payment` property of the `Order` is absent when it is expected to be provided. # # 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 MissingPaymentDetailsError < ::OpenActive::Models::OpenBookingError # @!attribute type # @return [String] def type "MissingPaymentDetailsError" 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