Class: Google::Apis::DfareportingV3_3::MobileApp

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_3/classes.rb,
generated/google/apis/dfareporting_v3_3/representations.rb,
generated/google/apis/dfareporting_v3_3/representations.rb

Overview

Contains information about a mobile app. Used as a landing page deep link.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MobileApp

Returns a new instance of MobileApp.



7167
7168
7169
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7167

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#directoryString

Mobile app directory. Corresponds to the JSON property directory

Returns:

  • (String)


7144
7145
7146
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7144

def directory
  @directory
end

#idString

ID of this mobile app. Corresponds to the JSON property id

Returns:

  • (String)


7149
7150
7151
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7149

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#mobileApp". Corresponds to the JSON property kind

Returns:

  • (String)


7155
7156
7157
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7155

def kind
  @kind
end

#publisher_nameString

Publisher name. Corresponds to the JSON property publisherName

Returns:

  • (String)


7160
7161
7162
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7160

def publisher_name
  @publisher_name
end

#titleString

Title of this mobile app. Corresponds to the JSON property title

Returns:

  • (String)


7165
7166
7167
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7165

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7172
7173
7174
7175
7176
7177
7178
# File 'generated/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