@idfy/sdk
Version:
Node.js SDK for Idfy REST API
8 lines (7 loc) • 329 B
TypeScript
import { Link } from '../../../model';
export interface ResourceLink extends Link {
resourceStatus?: ResourceLink.StatusEnum;
}
export declare namespace ResourceLink {
type StatusEnum = 'Unknown' | 'NotReady' | 'Success' | 'signatureError' | 'NotFound' | 'BadInput' | 'ServiceUnavailable' | 'Unauthorized' | 'TimeOut';
}