Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / google-auth-library / build / src / auth / credentials.d.ts
1 /**
2  * Copyright 2014 Google Inc. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 export interface Credentials {
17     refresh_token?: string | null;
18     expiry_date?: number | null;
19     access_token?: string | null;
20     token_type?: string | null;
21     id_token?: string | null;
22 }
23 export interface CredentialRequest {
24     refresh_token?: string;
25     access_token?: string;
26     token_type?: string;
27     expires_in?: number;
28     id_token?: string;
29 }
30 export interface JWTInput {
31     type?: string;
32     client_email?: string;
33     private_key?: string;
34     private_key_id?: string;
35     project_id?: string;
36     client_id?: string;
37     client_secret?: string;
38     refresh_token?: string;
39 }
40 export interface CredentialBody {
41     client_email?: string;
42     private_key?: string;
43 }