Sha256: e65680ca169854a8be734aeaac4b5cd655fee96c1a2fdf0e4658adedfd610fb0
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
module OpenActive module Models module Schema class ImageObject < ::OpenActive::Models::Schema::MediaObject # @!attribute type # @return [String] def type "schema:ImageObject" end # @return [OpenActive::Models::Schema::PropertyValue,String,URI] define_property :exif_data, as: "exifData", types: [ "OpenActive::Models::Schema::PropertyValue", "string", "URI", ] # @return [String] define_property :embedded_text_caption, as: "embeddedTextCaption", types: [ "string", ] # @return [String,OpenActive::Models::Schema::MediaObject,URI] define_property :caption, as: "caption", types: [ "string", "OpenActive::Models::Schema::MediaObject", "URI", ] # @return [Boolean,nil] define_property :representative_of_page, as: "representativeOfPage", types: [ "bool", "null", ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/models/schema/image_object.rb |
openactive-0.4.0 | lib/openactive/models/schema/image_object.rb |