Type alias AuthProcessMessage

AuthProcessMessage: {
    request?: {
        dataMap: Record<string, string>;
        url: string;
    };
    response?: {
        identityId: string;
    };
}

Type declaration

  • Optional request?: {
        dataMap: Record<string, string>;
        url: string;
    }
    • dataMap: Record<string, string>
    • url: string
  • Optional response?: {
        identityId: string;
    }
    • identityId: string

Generated using TypeDoc