class Google::Apis::DfareportingV3_3::MobileApp
Contains information about a mobile app. Used as a landing page deep link.
Attributes
directory[RW]
Mobile app directory. Corresponds to the JSON property `directory` @return [String]
id[RW]
ID of this mobile app. Corresponds to the JSON property `id` @return [String]
kind[RW]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#mobileApp”. Corresponds to the JSON property `kind` @return [String]
publisher_name[RW]
Publisher name. Corresponds to the JSON property `publisherName` @return [String]
title[RW]
Title of this mobile app. Corresponds to the JSON property `title` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 7167 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 7172 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