Skip to content

Instantly share code, notes, and snippets.

@Ikhiloya
Last active July 20, 2020 23:34
Show Gist options
  • Save Ikhiloya/0dc17075a4a5bfc9b0d19d1f47f26c77 to your computer and use it in GitHub Desktop.
Save Ikhiloya/0dc17075a4a5bfc9b0d19d1f47f26c77 to your computer and use it in GitHub Desktop.
A class to hold firebase configuration file
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