Interface OidcIssuerOfferCreateSuccessEvent

interface OidcIssuerOfferCreateSuccessEventSanitised {
    category: "oidc-issuer";
    data: {
        jwm: {
            body: {
                uri: string;
            };
            created_time: number;
            from: string;
            id: string;
            to: undefined;
            type: string;
        };
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "oidc-issuer"
data: {
    jwm: {
        body: {
            uri: string;
        };
        created_time: number;
        from: string;
        id: string;
        to: string[];
        type: string;
    };
}

Type declaration

  • jwm: {
        body: {
            uri: string;
        };
        created_time: number;
        from: string;
        id: string;
        to: string[];
        type: string;
    }
    • body: {
          uri: string;
      }
      • uri: string
    • created_time: number
    • from: string
    • id: string
    • Sanitisation Level PII to: string[]
    • type: string
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"