123456789_123456789_123456789_123456789_123456789_

Class: Net::IMAP::Namespaces

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Struct
Instance Chain:
self, Struct
Inherits: Struct
  • Object
Defined in: lib/net/imap/response_data.rb

Overview

Namespaces represents the response from [RFC-2342] NAMESPACE.

Namespace_Response = "*" SP "NAMESPACE" SP Namespace SP Namespace SP
   Namespace

   ; The first Namespace is the Personal Namespace(s)
   ; The second Namespace is the Other Users' Namespace(s)
   ; The third Namespace is the Shared Namespace(s)

Fields:

personal

Returns an array of Personal Namespace objects.

other

Returns an array of Other Users’ Namespace objects.

shared

Returns an array of Shared Namespace objects.

Instance Attribute Summary

  • #other rw

    Namespaces represents the response from [RFC-2342] NAMESPACE.

  • #personal rw

    Namespaces represents the response from [RFC-2342] NAMESPACE.

  • #shared rw

    Namespaces represents the response from [RFC-2342] NAMESPACE.

Instance Attribute Details

#other (rw)

Namespaces represents the response from [RFC-2342] NAMESPACE.

Namespace_Response = "*" SP "NAMESPACE" SP Namespace SP Namespace SP
   Namespace

   ; The first Namespace is the Personal Namespace(s)
   ; The second Namespace is the Other Users' Namespace(s)
   ; The third Namespace is the Shared Namespace(s)

Fields:

personal

Returns an array of Personal Namespace objects.

other

Returns an array of Other Users’ Namespace objects.

shared

Returns an array of Shared Namespace objects.

[ GitHub ]

  
# File 'lib/net/imap/response_data.rb', line 222

class Namespaces < Struct.new(:personal, :other, :shared)

#personal (rw)

Namespaces represents the response from [RFC-2342] NAMESPACE.

Namespace_Response = "*" SP "NAMESPACE" SP Namespace SP Namespace SP
   Namespace

   ; The first Namespace is the Personal Namespace(s)
   ; The second Namespace is the Other Users' Namespace(s)
   ; The third Namespace is the Shared Namespace(s)

Fields:

personal

Returns an array of Personal Namespace objects.

other

Returns an array of Other Users’ Namespace objects.

shared

Returns an array of Shared Namespace objects.

[ GitHub ]

  
# File 'lib/net/imap/response_data.rb', line 222

class Namespaces < Struct.new(:personal, :other, :shared)

#shared (rw)

Namespaces represents the response from [RFC-2342] NAMESPACE.

Namespace_Response = "*" SP "NAMESPACE" SP Namespace SP Namespace SP
   Namespace

   ; The first Namespace is the Personal Namespace(s)
   ; The second Namespace is the Other Users' Namespace(s)
   ; The third Namespace is the Shared Namespace(s)

Fields:

personal

Returns an array of Personal Namespace objects.

other

Returns an array of Other Users’ Namespace objects.

shared

Returns an array of Shared Namespace objects.

[ GitHub ]

  
# File 'lib/net/imap/response_data.rb', line 222

class Namespaces < Struct.new(:personal, :other, :shared)