featurebyte.GoogleCredential¶ class GoogleCredential( *, service_account_info: Union[Dict[str, str], str], type: Literal["GOOGLE"]="GOOGLE" ) Description¶ Data class for a Google service account credential. Parameters¶ service_account_info: Union[Dict[str, str], str] type: Literal["GOOGLE"] default: "GOOGLE" Examples¶ >>> google_credential = GoogleCredential( ... service_account_info={"type": "service_account", "private_key": "private_key"} ... )