types.go
changeset 74 ba06092b91a6
parent 70 fbc089e7249d
child 83 adc39ae774c0
equal deleted inserted replaced
73:d601c957d789 74:ba06092b91a6
     2 
     2 
     3 import (
     3 import (
     4 	"time"
     4 	"time"
     5 )
     5 )
     6 
     6 
     7 type Gondole struct {
     7 type Client struct {
     8 	Name    string
     8 	Name    string
     9 	ID      string
     9 	ID      string
    10 	Secret  string
    10 	Secret  string
    11 	APIBase string
    11 	APIBase string
    12 }
       
    13 
       
    14 type Client struct {
       
    15 	BaseURL     string
       
    16 	BearerToken string
       
    17 }
    12 }
    18 
    13 
    19 /*
    14 /*
    20 Entities:
    15 Entities:
    21 
    16