types.go
changeset 83 adc39ae774c0
parent 74 ba06092b91a6
child 85 abf0f5e40281
equal deleted inserted replaced
81:ba90955d2d56 83:adc39ae774c0
     2 
     2 
     3 import (
     3 import (
     4 	"time"
     4 	"time"
     5 )
     5 )
     6 
     6 
       
     7 // Client contains data for a gondole client application
     7 type Client struct {
     8 type Client struct {
     8 	Name    string
     9 	Name        string
     9 	ID      string
    10 	ID          string
    10 	Secret  string
    11 	Secret      string
    11 	APIBase string
    12 	APIBase     string
       
    13 	InstanceURL string
    12 }
    14 }
    13 
    15 
    14 /*
    16 /*
    15 Entities:
    17 Entities:
    16 
    18