Module GapiAuthResponse.OAuth2

type auth_code = string
type access_token = {
  1. access_token : string;
  2. token_type : string;
  3. expires_in : int;
  4. refresh_token : string;
}
val access_token : (access_token, string) GapiLens.t
val token_type : (access_token, string) GapiLens.t
val expires_in : (access_token, int) GapiLens.t
val refresh_token : (access_token, string) GapiLens.t