types.go
changeset 131 68ef6504637e
parent 130 c450bb73f59a
child 133 0085bcfc1131
equal deleted inserted replaced
130:c450bb73f59a 131:68ef6504637e
    11 	"time"
    11 	"time"
    12 )
    12 )
    13 
    13 
    14 // Client contains data for a gondole client application
    14 // Client contains data for a gondole client application
    15 type Client struct {
    15 type Client struct {
    16 	Name        string
    16 	Name        string // Name of the client
    17 	ID          string
    17 	ID          string // Application ID
    18 	Secret      string
    18 	Secret      string // Application secret
    19 	APIBase     string
    19 	APIBase     string // API prefix URL
    20 	InstanceURL string
    20 	InstanceURL string // Instance base URL
    21 
    21 
    22 	UserToken *UserToken
    22 	UserToken *UserToken // User token
    23 }
    23 }
    24 
    24 
    25 /*
    25 /*
    26 Entities:
    26 Entities:
    27 
    27