//------------------------------------------------------------------------------ // // This code was generated by a tool. // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ package cfg; import "errors" type AiStringKeyData struct { Value string } const TypeId_AiStringKeyData = -307888654 func (*AiStringKeyData) GetTypeId() int32 { return -307888654 } func NewAiStringKeyData(_buf map[string]interface{}) (_v *AiStringKeyData, err error) { _v = &AiStringKeyData{} { var _ok_ bool; if _v.Value, _ok_ = _buf["value"].(string); !_ok_ { err = errors.New("value error"); return } } return }