sig   type request_token = {     request_token : string;     request_token_secret : string;     callback_confirmed : bool;   }   val request_token :     (GapiAuthResponse.OAuth1.request_token, string) GapiLens.t   val request_token_secret :     (GapiAuthResponse.OAuth1.request_token, string) GapiLens.t   val callback_confirmed :     (GapiAuthResponse.OAuth1.request_token, bool) GapiLens.t   type auth_token = { auth_token : string; verifier : string; }   val auth_token : (GapiAuthResponse.OAuth1.auth_token, string) GapiLens.t   val verifier : (GapiAuthResponse.OAuth1.auth_token, string) GapiLens.t   type access_token = {     access_token : string;     access_token_secret : string;   }   val access_token :     (GapiAuthResponse.OAuth1.access_token, string) GapiLens.t   val access_token_secret :     (GapiAuthResponse.OAuth1.access_token, string) GapiLens.t end