()
| 26 | } |
| 27 | |
| 28 | func (this *InfoArg) Encode() (string, error) { |
| 29 | if this.Timestamp <= 0 { |
| 30 | this.Timestamp = fasttime.Now().Unix() |
| 31 | } |
| 32 | |
| 33 | return utils.SimpleEncryptObject(this) |
| 34 | } |
| 35 | |
| 36 | func (this *InfoArg) URLEncoded() (string, error) { |
| 37 | encodedString, err := this.Encode() |
no test coverage detected