21 lines
617 B
Go
21 lines
617 B
Go
// 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,
|
|
}
|
|
}
|