Class: Google::Apis::AndroidenterpriseV1::Product

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

Overview

A Products resource represents an app in the Google Play store that is available to at least some users in the enterprise. (Some apps are restricted to a single enterprise, and no information about them is made available outside that enterprise.) The information provided for each product (localized name, icon, link to the full Google Play details page) is intended to allow a basic representation of the product within an EMM user interface.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Product

Returns a new instance of Product



1703
1704
1705
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1703

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

Instance Attribute Details

#app_versionArray<Google::Apis::AndroidenterpriseV1::AppVersion>

App versions currently available for this product. Corresponds to the JSON property appVersion



1623
1624
1625
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1623

def app_version
  @app_version
end

#author_nameString

The name of the author of the product (for example, the app developer). Corresponds to the JSON property authorName

Returns:

  • (String)


1628
1629
1630
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1628

def author_name
  @author_name
end

#available_tracksArray<String>

The tracks that are visible to the enterprise. Corresponds to the JSON property availableTracks

Returns:

  • (Array<String>)


1633
1634
1635
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1633

def available_tracks
  @available_tracks
end

#details_urlString

A link to the (consumer) Google Play details page for the product. Corresponds to the JSON property detailsUrl

Returns:

  • (String)


1638
1639
1640
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1638

def details_url
  @details_url
end

#distribution_channelString

How and to whom the package is made available. The value publicGoogleHosted means that the package is available through the Play store and not restricted to a specific enterprise. The value privateGoogleHosted means that the package is a private app (restricted to an enterprise) but hosted by Google. The value privateSelfHosted means that the package is a private app (restricted to an enterprise) and is privately hosted. Corresponds to the JSON property distributionChannel

Returns:

  • (String)


1648
1649
1650
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1648

def distribution_channel
  @distribution_channel
end

#icon_urlString

A link to an image that can be used as an icon for the product. This image is suitable for use at up to 512px x 512px. Corresponds to the JSON property iconUrl

Returns:

  • (String)


1654
1655
1656
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1654

def icon_url
  @icon_url
end

#kindString

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

Returns:

  • (String)


1660
1661
1662
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1660

def kind
  @kind
end

#product_idString

A string of the form app:. For example, app:com.google.android. gm represents the Gmail app. Corresponds to the JSON property productId

Returns:

  • (String)


1666
1667
1668
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1666

def product_id
  @product_id
end

#product_pricingString

Whether this product is free, free with in-app purchases, or paid. If the pricing is unknown, this means the product is not generally available anymore ( even though it might still be available to people who own it). Corresponds to the JSON property productPricing

Returns:

  • (String)


1673
1674
1675
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1673

def product_pricing
  @product_pricing
end

#requires_container_appBoolean Also known as: requires_container_app?

Deprecated. Corresponds to the JSON property requiresContainerApp

Returns:

  • (Boolean)


1678
1679
1680
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1678

def requires_container_app
  @requires_container_app
end

#signing_certificateGoogle::Apis::AndroidenterpriseV1::ProductSigningCertificate

The certificate used to sign this product. Corresponds to the JSON property signingCertificate



1684
1685
1686
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1684

def signing_certificate
  @signing_certificate
end

#small_icon_urlString

A link to a smaller image that can be used as an icon for the product. This image is suitable for use at up to 128px x 128px. Corresponds to the JSON property smallIconUrl

Returns:

  • (String)


1690
1691
1692
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1690

def small_icon_url
  @small_icon_url
end

#titleString

The name of the product. Corresponds to the JSON property title

Returns:

  • (String)


1695
1696
1697
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1695

def title
  @title
end

#work_details_urlString

A link to the managed Google Play details page for the product, for use by an Enterprise admin. Corresponds to the JSON property workDetailsUrl

Returns:

  • (String)


1701
1702
1703
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1701

def work_details_url
  @work_details_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1708

def update!(**args)
  @app_version = args[:app_version] if args.key?(:app_version)
  @author_name = args[:author_name] if args.key?(:author_name)
  @available_tracks = args[:available_tracks] if args.key?(:available_tracks)
  @details_url = args[:details_url] if args.key?(:details_url)
  @distribution_channel = args[:distribution_channel] if args.key?(:distribution_channel)
  @icon_url = args[:icon_url] if args.key?(:icon_url)
  @kind = args[:kind] if args.key?(:kind)
  @product_id = args[:product_id] if args.key?(:product_id)
  @product_pricing = args[:product_pricing] if args.key?(:product_pricing)
  @requires_container_app = args[:requires_container_app] if args.key?(:requires_container_app)
  @signing_certificate = args[:signing_certificate] if args.key?(:signing_certificate)
  @small_icon_url = args[:small_icon_url] if args.key?(:small_icon_url)
  @title = args[:title] if args.key?(:title)
  @work_details_url = args[:work_details_url] if args.key?(:work_details_url)
end