class Folder

Public Class Methods

new() click to toggle source
# File lib/ozeki_libs_rest.rb, line 619
def initialize
    @inbox = "inbox"
    @outbox = "outbox"
    @sent = "sent"
    @notnent = "notsent"
    @deleted = "deleted"
end

Public Instance Methods

deleted() click to toggle source
# File lib/ozeki_libs_rest.rb, line 643
def deleted
    @deleted
end
inbox() click to toggle source
# File lib/ozeki_libs_rest.rb, line 627
def inbox
    @inbox
end
notnent() click to toggle source
# File lib/ozeki_libs_rest.rb, line 639
def notnent
    @notnent
end
outbox() click to toggle source
# File lib/ozeki_libs_rest.rb, line 631
def outbox
    @outbox
end
sent() click to toggle source
# File lib/ozeki_libs_rest.rb, line 635
def sent
    @sent
end