package
Version:
v0.8.0
Opens a new window with list of versions in this module.
Published: Jul 12, 2024
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Component struct {
ID string `yaml:"id"`
Expect string `yaml:"expect"`
}
type ComponentNamespace struct {
Namespace string `yaml:"namespace"`
Items []*Component `yaml:"component"`
}
Dialoguss is an application that can have one or more pseudo-ussd sessions
type DialogussConfig struct {
URL string `yaml:"url"`
Dial string `yaml:"dial"`
PhoneNumber string `yaml:"phoneNumber"`
Sessions []Session `yaml:"sessions"`
Components []ComponentNamespace `yaml:"components"`
Timeout int `yaml:"timeout"`
}
type Step struct {
StepNo int
IsLast bool
IsDial bool
Text string `yaml:"userInput"`
Expect string `yaml:"expect"`
ComponentID string `yaml:"componentId"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.