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