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.
21 lines
602 B
21 lines
602 B
5 years ago
|
// Auto-generated to Go types using avdl-compiler v1.4.6 (https://github.com/keybase/node-avdl-compiler)
|
||
|
// Input file: ../client/protocol/avdl/keybase1/quota.avdl
|
||
|
|
||
|
package keybase1
|
||
|
|
||
|
type VerifySessionRes struct {
|
||
|
Uid UID `codec:"uid" json:"uid"`
|
||
|
Sid string `codec:"sid" json:"sid"`
|
||
|
Generated int `codec:"generated" json:"generated"`
|
||
|
Lifetime int `codec:"lifetime" json:"lifetime"`
|
||
|
}
|
||
|
|
||
|
func (o VerifySessionRes) DeepCopy() VerifySessionRes {
|
||
|
return VerifySessionRes{
|
||
|
Uid: o.Uid.DeepCopy(),
|
||
|
Sid: o.Sid,
|
||
|
Generated: o.Generated,
|
||
|
Lifetime: o.Lifetime,
|
||
|
}
|
||
|
}
|