toJsonForProtocol method

  1. @override
Map<String, dynamic> toJsonForProtocol()

Returns a JSON structure of the model, optimized for Protocol communication.

Implementation

@override
Map<String, dynamic> toJsonForProtocol() {
  return {
    'id': id.toJson(),
    'authUserId': authUserId.toJson(),
    'scopeNames': scopeNames.toJson(),
    'created': created.toJson(),
    'lastUsed': lastUsed.toJson(),
    if (expiresAt != null) 'expiresAt': expiresAt?.toJson(),
    if (expireAfterUnusedFor != null)
      'expireAfterUnusedFor': expireAfterUnusedFor?.toJson(),
    'method': method,
  };
}