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