class Google::Apis::FirebaseV1beta1::IosAppConfig
Configuration metadata of a single Firebase App for iOS.
Attributes
config_file_contents[RW]
The content of the XML 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 `IosApp` is typically saved as. For example: `GoogleService-Info.plist` 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 560 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 565 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