This is a refactor of samhofi.us/x/keybase/v2 that takes advantage of the libkeybase performance improvements.
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.
|
|
|
// 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,
|
|
|
|
}
|
|
|
|
}
|