Class: Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaAppBundle

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/checks_v1alpha/classes.rb,
lib/google/apis/checks_v1alpha/representations.rb,
lib/google/apis/checks_v1alpha/representations.rb

Overview

Information about the analyzed app bundle.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChecksReportV1alphaAppBundle

Returns a new instance of GoogleChecksReportV1alphaAppBundle.



700
701
702
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 700

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

Instance Attribute Details

#bundle_idString

Unique id of the bundle. For example: "com.google.Gmail". Corresponds to the JSON property bundleId

Returns:

  • (String)


676
677
678
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 676

def bundle_id
  @bundle_id
end

#code_reference_idString

Git commit hash or changelist number associated with the release. Corresponds to the JSON property codeReferenceId

Returns:

  • (String)


681
682
683
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 681

def code_reference_id
  @code_reference_id
end

#release_typeString

Identifies the type of release. Corresponds to the JSON property releaseType

Returns:

  • (String)


686
687
688
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 686

def release_type
  @release_type
end

#versionString

The user-visible version of the bundle such as the Android versionName or iOS CFBundleShortVersionString. For example: "7.21.1". Corresponds to the JSON property version

Returns:

  • (String)


692
693
694
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 692

def version
  @version
end

#version_idString

The version used throughout the operating system and store to identify the build such as the Android versionCode or iOS CFBundleVersion. Corresponds to the JSON property versionId

Returns:

  • (String)


698
699
700
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 698

def version_id
  @version_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



705
706
707
708
709
710
711
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 705

def update!(**args)
  @bundle_id = args[:bundle_id] if args.key?(:bundle_id)
  @code_reference_id = args[:code_reference_id] if args.key?(:code_reference_id)
  @release_type = args[:release_type] if args.key?(:release_type)
  @version = args[:version] if args.key?(:version)
  @version_id = args[:version_id] if args.key?(:version_id)
end