Documentation ¶
Overview ¶
Package admin provides access to the Email Migration API v2.
See https://developers.google.com/admin-sdk/email-migration/v2/
Usage example:
import "google.golang.org/api/admin/email_migration/v2" ... adminService, err := admin.New(oauthHttpClient)
Index ¶
- Constants
- type MailInsertCall
- func (c *MailInsertCall) Do() error
- func (c *MailInsertCall) Fields(s ...googleapi.Field) *MailInsertCall
- func (c *MailInsertCall) Media(r io.Reader) *MailInsertCall
- func (c *MailInsertCall) ProgressUpdater(pu googleapi.ProgressUpdater) *MailInsertCall
- func (c *MailInsertCall) ResumableMedia(ctx context.Context, r io.ReaderAt, size int64, mediaType string) *MailInsertCall
- type MailItem
- type MailService
- type Service
Constants ¶
const (
// Manage email messages of users on your domain
EmailMigrationScope = "https://www.googleapis.com/auth/email.migration"
)
OAuth2 scopes used by this API.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MailInsertCall ¶
type MailInsertCall struct {
// contains filtered or unexported fields
}
func (*MailInsertCall) Do ¶
func (c *MailInsertCall) Do() error
func (*MailInsertCall) Fields ¶
func (c *MailInsertCall) Fields(s ...googleapi.Field) *MailInsertCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*MailInsertCall) Media ¶
func (c *MailInsertCall) Media(r io.Reader) *MailInsertCall
Media specifies the media to upload in a single chunk. At most one of Media and ResumableMedia may be set.
func (*MailInsertCall) ProgressUpdater ¶
func (c *MailInsertCall) ProgressUpdater(pu googleapi.ProgressUpdater) *MailInsertCall
ProgressUpdater provides a callback function that will be called after every chunk. It should be a low-latency function in order to not slow down the upload operation. This should only be called when using ResumableMedia (as opposed to Media).
func (*MailInsertCall) ResumableMedia ¶
func (c *MailInsertCall) ResumableMedia(ctx context.Context, r io.ReaderAt, size int64, mediaType string) *MailInsertCall
ResumableMedia specifies the media to upload in chunks and can be cancelled with ctx. At most one of Media and ResumableMedia may be set. mediaType identifies the MIME media type of the upload, such as "image/png". If mediaType is "", it will be auto-detected.
type MailItem ¶
type MailItem struct { // IsDeleted: Boolean indicating if the mail is deleted (used in Vault) IsDeleted bool `json:"isDeleted,omitempty"` // IsDraft: Boolean indicating if the mail is draft IsDraft bool `json:"isDraft,omitempty"` // IsInbox: Boolean indicating if the mail is in inbox IsInbox bool `json:"isInbox,omitempty"` // IsSent: Boolean indicating if the mail is in 'sent mails' IsSent bool `json:"isSent,omitempty"` // IsStarred: Boolean indicating if the mail is starred IsStarred bool `json:"isStarred,omitempty"` // IsTrash: Boolean indicating if the mail is in trash IsTrash bool `json:"isTrash,omitempty"` // IsUnread: Boolean indicating if the mail is unread IsUnread bool `json:"isUnread,omitempty"` // Kind: Kind of resource this is. Kind string `json:"kind,omitempty"` // Labels: List of labels (strings) Labels []string `json:"labels,omitempty"` }
MailItem: JSON template for MailItem object in Email Migration API.
type MailService ¶
type MailService struct {
// contains filtered or unexported fields
}
func NewMailService ¶
func NewMailService(s *Service) *MailService
func (*MailService) Insert ¶
func (r *MailService) Insert(userKey string, mailitem *MailItem) *MailInsertCall
Insert: Insert Mail into Google's Gmail backends