Class: Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1FeedbackReport

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

Overview

A feedback report submitted by a tester for a release.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppdistroV1FeedbackReport

Returns a new instance of GoogleFirebaseAppdistroV1FeedbackReport.



955
956
957
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 955

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

Instance Attribute Details

#create_timeString

Output only. The time when the feedback report was created. Corresponds to the JSON property createTime

Returns:

  • (String)


926
927
928
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 926

def create_time
  @create_time
end

#firebase_console_uriString

Output only. A link to the Firebase console displaying the feedback report. Corresponds to the JSON property firebaseConsoleUri

Returns:

  • (String)


931
932
933
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 931

def firebase_console_uri
  @firebase_console_uri
end

#nameString

The name of the feedback report resource. Format: projects/project_number/ apps/app/releases/release/feedbackReports/feedback_report` Corresponds to the JSON propertyname`

Returns:

  • (String)


937
938
939
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 937

def name
  @name
end

#screenshot_uriString

Output only. A signed link (which expires in one hour) that lets you directly download the screenshot. Corresponds to the JSON property screenshotUri

Returns:

  • (String)


943
944
945
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 943

def screenshot_uri
  @screenshot_uri
end

#testerString

Output only. The resource name of the tester who submitted the feedback report. Corresponds to the JSON property tester

Returns:

  • (String)


948
949
950
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 948

def tester
  @tester
end

#textString

Output only. The text of the feedback report. Corresponds to the JSON property text

Returns:

  • (String)


953
954
955
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 953

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



960
961
962
963
964
965
966
967
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 960

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @firebase_console_uri = args[:firebase_console_uri] if args.key?(:firebase_console_uri)
  @name = args[:name] if args.key?(:name)
  @screenshot_uri = args[:screenshot_uri] if args.key?(:screenshot_uri)
  @tester = args[:tester] if args.key?(:tester)
  @text = args[:text] if args.key?(:text)
end