...

Source file src/edge-infra.dev/pkg/edge/api/client/types.go

Documentation: edge-infra.dev/pkg/edge/api/client

     1  package client
     2  
     3  type LoginRequest struct {
     4  	Username     string `json:"username"`
     5  	Password     string `json:"password"`
     6  	Organization string `json:"organization"`
     7  }
     8  
     9  type SessionRefreshResponse struct {
    10  	Token string `json:"sessionRefresh" graphql:"sessionRefresh"`
    11  }
    12  

View as plain text