class Snov::GetUserLists::UserList

Attributes

contacts[RW]
creation_date[R]
deletion_date[R]
id[RW]
is_deleted[RW]
name[RW]

Public Instance Methods

creation_date=(val) click to toggle source
# File lib/snov/get_user_lists.rb, line 33
def creation_date=(val)
  @creation_date = Types::DateDetails.new(val.to_hash)
end
deletion_date=(val) click to toggle source
# File lib/snov/get_user_lists.rb, line 37
def deletion_date=(val)
  @deletion_date = val
  @deletion_date = Types::DateDetails.new(val.to_hash) if val
end
to_h() click to toggle source
# File lib/snov/get_user_lists.rb, line 42
def to_h
  { id: id, is_deleted: is_deleted, name: name, contacts: contacts }
end