Sha256: e4a7cf95e518f58fee70c3eb2ba51c5052eeb7c2ff0e4a60b145c3637ef0e0a7
Contents?: true
Size: 935 Bytes
Versions: 4
Compression:
Stored size: 935 Bytes
Contents
module OpenActive module Models module Schema class InteractionCounter < ::OpenActive::Models::Schema::StructuredValue # @!attribute type # @return [String] def type "schema:InteractionCounter" end # @return [OpenActive::Models::Schema::Action] define_property :interaction_type, as: "interactionType", types: [ "OpenActive::Models::Schema::Action", ] # @return [int,nil] define_property :user_interaction_count, as: "userInteractionCount", types: [ "int", "null", ] # @return [OpenActive::Models::Schema::SoftwareApplication,OpenActive::Models::Schema::WebSite] define_property :interaction_service, as: "interactionService", types: [ "OpenActive::Models::Schema::SoftwareApplication", "OpenActive::Models::Schema::WebSite", ] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems