* Serializes this instance into the provided serializer context. * @param {ObjectSerializerContext} context context
(context)
| 93 | * @param {ObjectSerializerContext} context context |
| 94 | */ |
| 95 | serialize(context) { |
| 96 | const { write } = context; |
| 97 | write(this.groupOptions); |
| 98 | write(this.loc); |
| 99 | write(this.request); |
| 100 | super.serialize(context); |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Restores this instance from the provided deserializer context. |