Class: Google::Apis::DfareportingV5::MobileApp
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV5::MobileApp
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v5/classes.rb,
lib/google/apis/dfareporting_v5/representations.rb,
lib/google/apis/dfareporting_v5/representations.rb
Overview
Contains information about a mobile app. Used as a landing page deep link.
Instance Attribute Summary collapse
-
#directory ⇒ String
Mobile app directory.
-
#id ⇒ String
ID of this mobile app.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#publisher_name ⇒ String
Publisher name.
-
#title ⇒ String
Title of this mobile app.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MobileApp
constructor
A new instance of MobileApp.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MobileApp
Returns a new instance of MobileApp.
8782 8783 8784 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8782 def initialize(**args) update!(**args) end |
Instance Attribute Details
#directory ⇒ String
Mobile app directory.
Corresponds to the JSON property directory
8759 8760 8761 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8759 def directory @directory end |
#id ⇒ String
ID of this mobile app.
Corresponds to the JSON property id
8764 8765 8766 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8764 def id @id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#mobileApp".
Corresponds to the JSON property kind
8770 8771 8772 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8770 def kind @kind end |
#publisher_name ⇒ String
Publisher name.
Corresponds to the JSON property publisherName
8775 8776 8777 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8775 def publisher_name @publisher_name end |
#title ⇒ String
Title of this mobile app.
Corresponds to the JSON property title
8780 8781 8782 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8780 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8787 8788 8789 8790 8791 8792 8793 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8787 def update!(**args) @directory = args[:directory] if args.key?(:directory) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @publisher_name = args[:publisher_name] if args.key?(:publisher_name) @title = args[:title] if args.key?(:title) end |