class Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata

Metadata in google::longrunning::Operation for Knowledge operations.

Attributes

knowledge_base[RW]

The name of the knowledge base interacted with during the operation. Corresponds to the JSON property `knowledgeBase` @return [String]

state[RW]

Required. Output only. The current state of this operation. Corresponds to the JSON property `state` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 13876
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v3/classes.rb, line 13881
def update!(**args)
  @knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
  @state = args[:state] if args.key?(:state)
end