github.com/cyverse/go-irodsclient@v0.13.2/irods/types/zone.go (about) 1 package types 2 3 import "fmt" 4 5 // IRODSZone contains irods zone information 6 type IRODSZone struct { 7 ID string 8 Name string 9 Type string 10 } 11 12 // ToString stringifies the object 13 func (zone *IRODSZone) ToString() string { 14 return fmt.Sprintf("<IRODSZone %s %s %s>", zone.ID, zone.Name, zone.Type) 15 }