Sha256: f694a99bf1f0a3989281880499e94acd9e749ea9daef75182d3e7e8c4f6f897e
Contents?: true
Size: 580 Bytes
Versions: 9
Compression:
Stored size: 580 Bytes
Contents
# frozen_string_literal: true module DocomoNlu module Management class Config < Base self.element_name = "configs" self.prefix = "/management/v2.6/projects/:project_id/bots/:bot_id/" # { # "dialogTimeout": 300, # "replyTimeout": 300, # "xxxxUrl": "http://xxx", # "yyyyUrl": "http://xxx", # "sensitiveInfo": "aa.bb, ccc.ddd...", # "sraix" : [true|false], # "taskServerUrl": "http://xxx" # } def destroy(keys) self.id = keys.join(",") super() end end end end
Version data entries
9 entries across 9 versions & 1 rubygems