Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 454 Bytes

File metadata and controls

22 lines (21 loc) · 454 Bytes

Token Entity Relationship Diagram

erDiagram
    TokenService ||--o{ TokenRequest : handles
    TokenService {
        string appID
        string appCertificate
        string allowOrigin
    }
    TokenRequest {
        string TokenType
        string Channel
        string RtcRole
        string Uid
        int ExpirationSeconds
    }
    TokenService ||--|{ TokenResponse : generates
    TokenResponse {
        string Token
    }
Loading