Interface iUserOutgoingApprovalWithDetails<T>

interface iUserOutgoingApprovalWithDetails<T> {
    approvalCriteria?: iOutgoingApprovalCriteriaWithDetails<T>;
    approvalId: string;
    badgeIds: iUintRange<T>[];
    customData?: string;
    details?: iApprovalInfoDetails;
    initiatedByList: iAddressList;
    initiatedByListId: string;
    ownershipTimes: iUintRange<T>[];
    toList: iAddressList;
    toListId: string;
    transferTimes: iUintRange<T>[];
    uri?: string;
}

Type Parameters

Hierarchy (view full)

Implemented by

Properties

approvalId: string
badgeIds: iUintRange<T>[]
customData?: string
initiatedByList: iAddressList

The populated address list for the initiatedByListId

initiatedByListId: string
ownershipTimes: iUintRange<T>[]
toList: iAddressList

The populated address list for the toListId

toListId: string
transferTimes: iUintRange<T>[]
uri?: string