interface ResourceNotFoundError {
    code: "ResourceNotFound";
    message: string;
    resource?: any;
}

Properties

code: "ResourceNotFound"
message: string
resource?: any