Class: Google::Apis::CesV1::ExportAppResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExportAppResponse

Returns a new instance of ExportAppResponse.



3385
3386
3387
# File 'lib/google/apis/ces_v1/classes.rb', line 3385

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

Instance Attribute Details

#app_contentString

App folder compressed as a zip file. Corresponds to the JSON property appContent NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


3377
3378
3379
# File 'lib/google/apis/ces_v1/classes.rb', line 3377

def app_content
  @app_content
end

#app_uriString

The Google Cloud Storage URI to which the app was exported. Corresponds to the JSON property appUri

Returns:

  • (String)


3383
3384
3385
# File 'lib/google/apis/ces_v1/classes.rb', line 3383

def app_uri
  @app_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3390
3391
3392
3393
# File 'lib/google/apis/ces_v1/classes.rb', line 3390

def update!(**args)
  @app_content = args[:app_content] if args.key?(:app_content)
  @app_uri = args[:app_uri] if args.key?(:app_uri)
end