class Sfeed::MergeEvent

Constants

AVATAR
EVENTS
FIELDS
KEY
NICKNAME
TIMELINE
TYPE
UID

Public Instance Methods

struct_fields() click to toggle source
# File lib/sfeed_types.rb, line 143
def struct_fields; FIELDS; end
validate() click to toggle source
# File lib/sfeed_types.rb, line 145
def validate
  raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field uid is unset!') unless @uid
  raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field type is unset!') unless @type
  raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field timeline is unset!') unless @timeline
  raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field key is unset!') unless @key
end