Class: Google::Apis::CesV1::ExportAppResponse
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::ExportAppResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ces_v1/classes.rb,
lib/google/apis/ces_v1/representations.rb,
lib/google/apis/ces_v1/representations.rb
Overview
Response message for AgentService.ExportApp.
Instance Attribute Summary collapse
-
#app_content ⇒ String
App folder compressed as a zip file.
-
#app_uri ⇒ String
The Google Cloud Storage URI to which the app was exported.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExportAppResponse
constructor
A new instance of ExportAppResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExportAppResponse
Returns a new instance of ExportAppResponse.
3218 3219 3220 |
# File 'lib/google/apis/ces_v1/classes.rb', line 3218 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_content ⇒ String
App folder compressed as a zip file.
Corresponds to the JSON property appContent
NOTE: Values are automatically base64 encoded/decoded in the client library.
3210 3211 3212 |
# File 'lib/google/apis/ces_v1/classes.rb', line 3210 def app_content @app_content end |
#app_uri ⇒ String
The Google Cloud Storage URI to
which the app was exported.
Corresponds to the JSON property appUri
3216 3217 3218 |
# File 'lib/google/apis/ces_v1/classes.rb', line 3216 def app_uri @app_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3223 3224 3225 3226 |
# File 'lib/google/apis/ces_v1/classes.rb', line 3223 def update!(**args) @app_content = args[:app_content] if args.key?(:app_content) @app_uri = args[:app_uri] if args.key?(:app_uri) end |