diaspora_federation/lib/diaspora_federation/entities/poll_answer.rb
2015-11-28 18:40:55 +03:00

18 lines
456 B
Ruby

module DiasporaFederation
module Entities
# this entity represents a poll answer and is federated as a part of the Poll entity
#
# @see Validators::PollAnswerValidator
class PollAnswer < Entity
# @!attribute [r] guid
# @see HCard#guid
# @return [String] guid
property :guid
# @!attribute [r] answer
# Text of the answer
# @return [String] answer
property :answer
end
end
end