Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentGitIntegrationSettingsGithubSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentGitIntegrationSettingsGithubSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Instance Attribute Summary collapse
-
#access_token ⇒ String
Corresponds to the JSON property
accessToken. -
#branches ⇒ Array<String>
Corresponds to the JSON property
branches. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#repository_uri ⇒ String
Corresponds to the JSON property
repositoryUri. -
#tracking_branch ⇒ String
Corresponds to the JSON property
trackingBranch.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3AgentGitIntegrationSettingsGithubSettings
constructor
A new instance of GoogleCloudDialogflowCxV3AgentGitIntegrationSettingsGithubSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3AgentGitIntegrationSettingsGithubSettings
Returns a new instance of GoogleCloudDialogflowCxV3AgentGitIntegrationSettingsGithubSettings.
514 515 516 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 514 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_token ⇒ String
Corresponds to the JSON property accessToken
492 493 494 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 492 def access_token @access_token end |
#branches ⇒ Array<String>
Corresponds to the JSON property branches
497 498 499 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 497 def branches @branches end |
#display_name ⇒ String
Corresponds to the JSON property displayName
502 503 504 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 502 def display_name @display_name end |
#repository_uri ⇒ String
Corresponds to the JSON property repositoryUri
507 508 509 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 507 def repository_uri @repository_uri end |
#tracking_branch ⇒ String
Corresponds to the JSON property trackingBranch
512 513 514 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 512 def tracking_branch @tracking_branch end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
519 520 521 522 523 524 525 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 519 def update!(**args) @access_token = args[:access_token] if args.key?(:access_token) @branches = args[:branches] if args.key?(:branches) @display_name = args[:display_name] if args.key?(:display_name) @repository_uri = args[:repository_uri] if args.key?(:repository_uri) @tracking_branch = args[:tracking_branch] if args.key?(:tracking_branch) end |