Type alias UploadLogsResponse

UploadLogsResponse: {
    correlationId?: string;
    feedbackId?: string;
    trackingid?: string;
    url?: string;
    userId?: string;
}

Response from uploading logs to the server.

Type declaration

  • Optional correlationId?: string

    Correlation ID for tracking related operations

  • Optional feedbackId?: string

    Feedback ID associated with the logs

  • Optional trackingid?: string

    Tracking ID for the upload request

  • Optional url?: string

    URL where the logs can be accessed

  • Optional userId?: string

    ID of the user who uploaded logs

Example

const response: UploadLogsResponse = { trackingid: 'track123', url: 'https://...', userId: 'user1' };