| package models// AccessToken - token used to access netmakertype AccessToken struct {	APIConnString string `json:"apiconnstring"`	ClientConfig}// ClientConfig - the config of the clienttype ClientConfig struct {	Network    string `json:"network"`	Key        string `json:"key"`	LocalRange string `json:"localrange"`}
 |