Last active
July 20, 2020 23:34
-
-
Save Ikhiloya/0dc17075a4a5bfc9b0d19d1f47f26c77 to your computer and use it in GitHub Desktop.
A class to hold firebase configuration file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class FirebaseCredential { | |
private String type; | |
private String project_id; | |
private String private_key_id; | |
private String private_key; | |
private String client_email; | |
private String client_id; | |
private String auth_uri; | |
private String token_uri; | |
private String auth_provider_x509_cert_url; | |
private String client_x509_cert_url; | |
//getters and setters omitted for brevity | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment