class Google::Apis::FirebaseV1beta1::AndroidAppConfig

Configuration metadata of a single Firebase App for Android.

Attributes

config_file_contents[RW]

The contents of the JSON configuration file. Corresponds to the JSON property `configFileContents` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]

config_filename[RW]

The filename that the configuration artifact for the `AndroidApp` is typically saved as. For example: `google-services.json` Corresponds to the JSON property `configFilename` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebase_v1beta1/classes.rb, line 253
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebase_v1beta1/classes.rb, line 258
def update!(**args)
  @config_file_contents = args[:config_file_contents] if args.key?(:config_file_contents)
  @config_filename = args[:config_filename] if args.key?(:config_filename)
end