DocumentUpdateRuleBuildAutoUpdate creates a rule for automatic updates with specified interval
(interval int)
| 398 | |
| 399 | // DocumentUpdateRuleBuildAutoUpdate creates a rule for automatic updates with specified interval |
| 400 | func DocumentUpdateRuleBuildAutoUpdate(interval int) *DocumentUpdateRule { |
| 401 | return &DocumentUpdateRule{ |
| 402 | UpdateType: DocumentUpdateTypeAutoUpdate, |
| 403 | UpdateInterval: interval, |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | type updateDatasetsDocumentsResp struct { |
| 408 | baseResponse |
no outgoing calls