You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
773 B
22 lines
773 B
// Auto-generated to Go types using avdl-compiler v1.4.6 (https://github.com/keybase/node-avdl-compiler) |
|
// Input file: ../client/protocol/avdl/keybase1/session.avdl |
|
|
|
package keybase1 |
|
|
|
type Session struct { |
|
Uid UID `codec:"uid" json:"uid"` |
|
Username string `codec:"username" json:"username"` |
|
Token string `codec:"token" json:"token"` |
|
DeviceSubkeyKid KID `codec:"deviceSubkeyKid" json:"deviceSubkeyKid"` |
|
DeviceSibkeyKid KID `codec:"deviceSibkeyKid" json:"deviceSibkeyKid"` |
|
} |
|
|
|
func (o Session) DeepCopy() Session { |
|
return Session{ |
|
Uid: o.Uid.DeepCopy(), |
|
Username: o.Username, |
|
Token: o.Token, |
|
DeviceSubkeyKid: o.DeviceSubkeyKid.DeepCopy(), |
|
DeviceSibkeyKid: o.DeviceSibkeyKid.DeepCopy(), |
|
} |
|
}
|
|
|