blob: 3c05aa8ee75e5bfd7dc2bc63d5e165a0aa46c8e1 [file] [log] [blame]
package protocal
type AbstractResultMessage struct {
ResultCode ResultCode
Msg string
}
type AbstractIdentifyRequest struct {
Version string
ApplicationId string
TransactionServiceGroup string
ExtraData []byte
}
type AbstractIdentifyResponse struct {
AbstractResultMessage
Version string
ExtraData []byte
Identified bool
}