Class: Google::Apis::FirebaseV1beta1::IosAppConfig
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseV1beta1::IosAppConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firebase_v1beta1/classes.rb,
generated/google/apis/firebase_v1beta1/representations.rb,
generated/google/apis/firebase_v1beta1/representations.rb
Overview
Configuration metadata of a single Firebase App for iOS.
Instance Attribute Summary collapse
-
#config_file_contents ⇒ String
The content of the XML configuration file.
-
#config_filename ⇒ String
The filename that the configuration artifact is typically saved as.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IosAppConfig
constructor
A new instance of IosAppConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ IosAppConfig
Returns a new instance of IosAppConfig
567 568 569 |
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 567 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config_file_contents ⇒ String
The content of the XML configuration file.
Corresponds to the JSON property configFileContents
NOTE: Values are automatically base64 encoded/decoded in the client library.
559 560 561 |
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 559 def config_file_contents @config_file_contents end |
#config_filename ⇒ String
The filename that the configuration artifact is typically saved as.
For example: GoogleService-Info.plist
Corresponds to the JSON property configFilename
565 566 567 |
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 565 def config_filename @config_filename end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
572 573 574 575 |
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 572 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 |