github.com/mhilton/juju-juju@v0.0.0-20150901100907-a94dd2c73455/api/base/types.go (about)

     1  // Copyright 2015 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package base
     5  
     6  import (
     7  	"time"
     8  )
     9  
    10  // UserEnvironment holds information about an environment and the last
    11  // time the environment was accessed for a particular user. This is a client
    12  // side structure that translates the owner tag into a user facing string.
    13  type UserEnvironment struct {
    14  	Name           string
    15  	UUID           string
    16  	Owner          string
    17  	LastConnection *time.Time
    18  }