UNPKG

@idfy/sdk

Version:
8 lines (7 loc) 329 B
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'; }