Sha256: c6615b24453a99a37392aa0443341bc2a9a761801b7163a3fcd9e2917690dd4b
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 KB
Contents
module OpenActive module Models module Schema class EntryPoint < ::OpenActive::Models::Schema::Intangible # @!attribute type # @return [String] def type "schema:EntryPoint" end # @return [OpenActive::Models::Schema::SoftwareApplication,URI] define_property :action_application, as: "actionApplication", types: [ "OpenActive::Models::Schema::SoftwareApplication", "URI", ] # @return [OpenActive::Models::Schema::SoftwareApplication,URI] define_property :application, as: "application", types: [ "OpenActive::Models::Schema::SoftwareApplication", "URI", ] # @return [String,URI,OpenActive::Enums::Schema::DigitalPlatformEnumeration,nil] define_property :action_platform, as: "actionPlatform", types: [ "string", "URI", "OpenActive::Enums::Schema::DigitalPlatformEnumeration", "null", ] # @return [String] define_property :http_method, as: "httpMethod", types: [ "string", ] # @return [String] define_property :url_template, as: "urlTemplate", types: [ "string", ] # @return [String] define_property :encoding_type, as: "encodingType", types: [ "string", ] # @return [String] define_property :content_type, as: "contentType", types: [ "string", ] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/models/schema/entry_point.rb |