Skip to content
Snippets Groups Projects
api.ts 814 KiB
Newer Older
  • Learn to ignore specific revisions
  • Alexey Lunin's avatar
    Alexey Lunin committed
    6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000
        /**
         * Human-readable comment
         * @type {string}
         * @memberof V10CredentialConnFreeOfferRequest
         */
        comment?: string;
        /**
         * Credential definition identifier
         * @type {string}
         * @memberof V10CredentialConnFreeOfferRequest
         */
        cred_def_id: string;
        /**
         *
         * @type {CredentialPreview}
         * @memberof V10CredentialConnFreeOfferRequest
         */
        credential_preview: CredentialPreview;
        /**
         * Record trace information, based on agent configuration
         * @type {boolean}
         * @memberof V10CredentialConnFreeOfferRequest
         */
        trace?: boolean;
    }
    /**
     *
     * @export
     * @interface V10CredentialCreate
     */
    export interface V10CredentialCreate {
        /**
         * Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting)
         * @type {boolean}
         * @memberof V10CredentialCreate
         */
        auto_remove?: boolean;
        /**
         * Human-readable comment
         * @type {string}
         * @memberof V10CredentialCreate
         */
        comment?: string;
        /**
         * Credential definition identifier
         * @type {string}
         * @memberof V10CredentialCreate
         */
        cred_def_id?: string;
        /**
         *
         * @type {CredentialPreview}
         * @memberof V10CredentialCreate
         */
        credential_proposal: CredentialPreview;
        /**
         * Credential issuer DID
         * @type {string}
         * @memberof V10CredentialCreate
         */
        issuer_did?: string;
        /**
         * Schema identifier
         * @type {string}
         * @memberof V10CredentialCreate
         */
        schema_id?: string;
        /**
         * Schema issuer DID
         * @type {string}
         * @memberof V10CredentialCreate
         */
        schema_issuer_did?: string;
        /**
         * Schema name
         * @type {string}
         * @memberof V10CredentialCreate
         */
        schema_name?: string;
        /**
         * Schema version
         * @type {string}
         * @memberof V10CredentialCreate
         */
        schema_version?: string;
        /**
         * Record trace information, based on agent configuration
         * @type {boolean}
         * @memberof V10CredentialCreate
         */
        trace?: boolean;
    }
    /**
     *
     * @export
     * @interface V10CredentialExchange
     */
    export interface V10CredentialExchange {
        /**
         * Issuer choice to issue to request in this credential exchange
         * @type {boolean}
         * @memberof V10CredentialExchange
         */
        auto_issue?: boolean;
        /**
         * Holder choice to accept offer in this credential exchange
         * @type {boolean}
         * @memberof V10CredentialExchange
         */
        auto_offer?: boolean;
        /**
         * Issuer choice to remove this credential exchange record when complete
         * @type {boolean}
         * @memberof V10CredentialExchange
         */
        auto_remove?: boolean;
        /**
         * Connection identifier
         * @type {string}
         * @memberof V10CredentialExchange
         */
        connection_id?: string;
        /**
         * Time of record creation
         * @type {string}
         * @memberof V10CredentialExchange
         */
        created_at?: string;
        /**
         * Credential as stored
         * @type {IndyCredInfo}
         * @memberof V10CredentialExchange
         */
        credential?: IndyCredInfo;
        /**
         * Credential definition identifier
         * @type {string}
         * @memberof V10CredentialExchange
         */
        credential_definition_id?: string;
        /**
         * Credential exchange identifier
         * @type {string}
         * @memberof V10CredentialExchange
         */
        credential_exchange_id?: string;
        /**
         * Credential identifier
         * @type {string}
         * @memberof V10CredentialExchange
         */
        credential_id?: string;
        /**
         * (Indy) credential offer
         * @type {IndyCredAbstract}
         * @memberof V10CredentialExchange
         */
        credential_offer?: IndyCredAbstract;
        /**
         * Credential offer message
         * @type {CredentialOffer}
         * @memberof V10CredentialExchange
         */
        credential_offer_dict?: CredentialOffer;
        /**
         * Credential proposal message
         * @type {CredentialProposal}
         * @memberof V10CredentialExchange
         */
        credential_proposal_dict?: CredentialProposal;
        /**
         * (Indy) credential request
         * @type {IndyCredRequest}
         * @memberof V10CredentialExchange
         */
        credential_request?: IndyCredRequest;
        /**
         * (Indy) credential request metadata
         * @type {any}
         * @memberof V10CredentialExchange
         */
        credential_request_metadata?: any;
        /**
         * Error message
         * @type {string}
         * @memberof V10CredentialExchange
         */
        error_msg?: string;
        /**
         * Issue-credential exchange initiator: self or external
         * @type {string}
         * @memberof V10CredentialExchange
         */
        initiator?: V10CredentialExchange.InitiatorEnum;
        /**
         * Parent thread identifier
         * @type {string}
         * @memberof V10CredentialExchange
         */
        parent_thread_id?: string;
        /**
         * Credential as received, prior to storage in holder wallet
         * @type {IndyCredential}
         * @memberof V10CredentialExchange
         */
        raw_credential?: IndyCredential;
        /**
         * Revocation registry identifier
         * @type {string}
         * @memberof V10CredentialExchange
         */
        revoc_reg_id?: string;
        /**
         * Credential identifier within revocation registry
         * @type {string}
         * @memberof V10CredentialExchange
         */
        revocation_id?: string;
        /**
         * Issue-credential exchange role: holder or issuer
         * @type {string}
         * @memberof V10CredentialExchange
         */
        role?: V10CredentialExchange.RoleEnum;
        /**
         * Schema identifier
         * @type {string}
         * @memberof V10CredentialExchange
         */
        schema_id?: string;
        /**
         * Issue-credential exchange state
         * @type {string}
         * @memberof V10CredentialExchange
         */
        state?: string;
        /**
         * Thread identifier
         * @type {string}
         * @memberof V10CredentialExchange
         */
        thread_id?: string;
        /**
         * Record trace information, based on agent configuration
         * @type {boolean}
         * @memberof V10CredentialExchange
         */
        trace?: boolean;
        /**
         * Time of last record update
         * @type {string}
         * @memberof V10CredentialExchange
         */
        updated_at?: string;
    }
    
    /**
     * @export
     * @namespace V10CredentialExchange
     */
    export namespace V10CredentialExchange {
        /**
         * @export
         * @enum {string}
         */
        export enum InitiatorEnum {
            Self = <any> 'self',
            External = <any> 'external'
        }
        /**
         * @export
         * @enum {string}
         */
        export enum RoleEnum {
            Holder = <any> 'holder',
            Issuer = <any> 'issuer'
        }
    }
    /**
     *
     * @export
     * @interface V10CredentialExchangeListResult
     */
    export interface V10CredentialExchangeListResult {
        /**
         * Aries#0036 v1.0 credential exchange records
         * @type {Array<V10CredentialExchange>}
         * @memberof V10CredentialExchangeListResult
         */
        results?: Array<V10CredentialExchange>;
    }
    /**
     *
     * @export
     * @interface V10CredentialFreeOfferRequest
     */
    export interface V10CredentialFreeOfferRequest {
        /**
         * Whether to respond automatically to credential requests, creating and issuing requested credentials
         * @type {boolean}
         * @memberof V10CredentialFreeOfferRequest
         */
        auto_issue?: boolean;
        /**
         * Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting)
         * @type {boolean}
         * @memberof V10CredentialFreeOfferRequest
         */
        auto_remove?: boolean;
        /**
         * Human-readable comment
         * @type {string}
         * @memberof V10CredentialFreeOfferRequest
         */
        comment?: string;
        /**
         * Connection identifier
         * @type {string}
         * @memberof V10CredentialFreeOfferRequest
         */
        connection_id: string;
        /**
         * Credential definition identifier
         * @type {string}
         * @memberof V10CredentialFreeOfferRequest
         */
        cred_def_id: string;
        /**
         *
         * @type {CredentialPreview}
         * @memberof V10CredentialFreeOfferRequest
         */
        credential_preview: CredentialPreview;
        /**
         * Record trace information, based on agent configuration
         * @type {boolean}
         * @memberof V10CredentialFreeOfferRequest
         */
        trace?: boolean;
    }
    /**
     *
     * @export
     * @interface V10CredentialIssueRequest
     */
    export interface V10CredentialIssueRequest {
        /**
         * Human-readable comment
         * @type {string}
         * @memberof V10CredentialIssueRequest
         */
        comment?: string;
    }
    /**
     *
     * @export
     * @interface V10CredentialProblemReportRequest
     */
    export interface V10CredentialProblemReportRequest {
        /**
         *
         * @type {string}
         * @memberof V10CredentialProblemReportRequest
         */
        description: string;
    }
    /**
     *
     * @export
     * @interface V10CredentialProposalRequestMand
     */
    export interface V10CredentialProposalRequestMand {
        /**
         * Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting)
         * @type {boolean}
         * @memberof V10CredentialProposalRequestMand
         */
        auto_remove?: boolean;
        /**
         * Human-readable comment
         * @type {string}
         * @memberof V10CredentialProposalRequestMand
         */
        comment?: string;
        /**
         * Connection identifier
         * @type {string}
         * @memberof V10CredentialProposalRequestMand
         */
        connection_id: string;
        /**
         * Credential definition identifier
         * @type {string}
         * @memberof V10CredentialProposalRequestMand
         */
        cred_def_id?: string;
        /**
         *
         * @type {CredentialPreview}
         * @memberof V10CredentialProposalRequestMand
         */
        credential_proposal: CredentialPreview;
        /**
         * Credential issuer DID
         * @type {string}
         * @memberof V10CredentialProposalRequestMand
         */
        issuer_did?: string;
        /**
         * Schema identifier
         * @type {string}
         * @memberof V10CredentialProposalRequestMand
         */
        schema_id?: string;
        /**
         * Schema issuer DID
         * @type {string}
         * @memberof V10CredentialProposalRequestMand
         */
        schema_issuer_did?: string;
        /**
         * Schema name
         * @type {string}
         * @memberof V10CredentialProposalRequestMand
         */
        schema_name?: string;
        /**
         * Schema version
         * @type {string}
         * @memberof V10CredentialProposalRequestMand
         */
        schema_version?: string;
        /**
         * Record trace information, based on agent configuration
         * @type {boolean}
         * @memberof V10CredentialProposalRequestMand
         */
        trace?: boolean;
    }
    /**
     *
     * @export
     * @interface V10CredentialProposalRequestOpt
     */
    export interface V10CredentialProposalRequestOpt {
        /**
         * Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting)
         * @type {boolean}
         * @memberof V10CredentialProposalRequestOpt
         */
        auto_remove?: boolean;
        /**
         * Human-readable comment
         * @type {string}
         * @memberof V10CredentialProposalRequestOpt
         */
        comment?: string;
        /**
         * Connection identifier
         * @type {string}
         * @memberof V10CredentialProposalRequestOpt
         */
        connection_id: string;
        /**
         * Credential definition identifier
         * @type {string}
         * @memberof V10CredentialProposalRequestOpt
         */
        cred_def_id?: string;
        /**
         *
         * @type {CredentialPreview}
         * @memberof V10CredentialProposalRequestOpt
         */
        credential_proposal?: CredentialPreview;
        /**
         * Credential issuer DID
         * @type {string}
         * @memberof V10CredentialProposalRequestOpt
         */
        issuer_did?: string;
        /**
         * Schema identifier
         * @type {string}
         * @memberof V10CredentialProposalRequestOpt
         */
        schema_id?: string;
        /**
         * Schema issuer DID
         * @type {string}
         * @memberof V10CredentialProposalRequestOpt
         */
        schema_issuer_did?: string;
        /**
         * Schema name
         * @type {string}
         * @memberof V10CredentialProposalRequestOpt
         */
        schema_name?: string;
        /**
         * Schema version
         * @type {string}
         * @memberof V10CredentialProposalRequestOpt
         */
        schema_version?: string;
        /**
         * Record trace information, based on agent configuration
         * @type {boolean}
         * @memberof V10CredentialProposalRequestOpt
         */
        trace?: boolean;
    }
    /**
     *
     * @export
     * @interface V10CredentialStoreRequest
     */
    export interface V10CredentialStoreRequest {
        /**
         *
         * @type {string}
         * @memberof V10CredentialStoreRequest
         */
        credential_id?: string;
    }
    /**
     *
     * @export
     * @interface V10DiscoveryExchangeListResult
     */
    export interface V10DiscoveryExchangeListResult {
        /**
         *
         * @type {Array<V10DiscoveryRecord>}
         * @memberof V10DiscoveryExchangeListResult
         */
        results?: Array<V10DiscoveryRecord>;
    }
    /**
     *
     * @export
     * @interface V10DiscoveryRecord
     */
    export interface V10DiscoveryRecord {
        /**
         * Connection identifier
         * @type {string}
         * @memberof V10DiscoveryRecord
         */
        connection_id?: string;
        /**
         * Time of record creation
         * @type {string}
         * @memberof V10DiscoveryRecord
         */
        created_at?: string;
        /**
         * Disclose message
         * @type {Disclose}
         * @memberof V10DiscoveryRecord
         */
        disclose?: Disclose;
        /**
         * Credential exchange identifier
         * @type {string}
         * @memberof V10DiscoveryRecord
         */
        discovery_exchange_id?: string;
        /**
         * Query message
         * @type {Query}
         * @memberof V10DiscoveryRecord
         */
        query_msg?: Query;
        /**
         * Current record state
         * @type {string}
         * @memberof V10DiscoveryRecord
         */
        state?: string;
        /**
         * Thread identifier
         * @type {string}
         * @memberof V10DiscoveryRecord
         */
        thread_id?: string;
        /**
         * Record trace information, based on agent configuration
         * @type {boolean}
         * @memberof V10DiscoveryRecord
         */
        trace?: boolean;
        /**
         * Time of last record update
         * @type {string}
         * @memberof V10DiscoveryRecord
         */
        updated_at?: string;
    }
    /**
     *
     * @export
     * @interface V10PresentProofModuleResponse
     */
    export interface V10PresentProofModuleResponse {
    }
    /**
     *
     * @export
     * @interface V10PresentationCreateRequestRequest
     */
    export interface V10PresentationCreateRequestRequest {
        /**
         * Verifier choice to auto-verify proof presentation
         * @type {boolean}
         * @memberof V10PresentationCreateRequestRequest
         */
        auto_verify?: boolean;
        /**
         *
         * @type {string}
         * @memberof V10PresentationCreateRequestRequest
         */
        comment?: string;
        /**
         *
         * @type {IndyProofRequest}
         * @memberof V10PresentationCreateRequestRequest
         */
        proof_request: IndyProofRequest;
        /**
         * Whether to trace event (default false)
         * @type {boolean}
         * @memberof V10PresentationCreateRequestRequest
         */
        trace?: boolean;
    }
    /**
     *
     * @export
     * @interface V10PresentationExchange
     */
    export interface V10PresentationExchange {
        /**
         * Prover choice to auto-present proof as verifier requests
         * @type {boolean}
         * @memberof V10PresentationExchange
         */
        auto_present?: boolean;
        /**
         * Verifier choice to auto-verify proof presentation
         * @type {boolean}
         * @memberof V10PresentationExchange
         */
        auto_verify?: boolean;
        /**
         * Connection identifier
         * @type {string}
         * @memberof V10PresentationExchange
         */
        connection_id?: string;
        /**
         * Time of record creation
         * @type {string}
         * @memberof V10PresentationExchange
         */
        created_at?: string;
        /**
         * Error message
         * @type {string}
         * @memberof V10PresentationExchange
         */
        error_msg?: string;
        /**
         * Present-proof exchange initiator: self or external
         * @type {string}
         * @memberof V10PresentationExchange
         */
        initiator?: V10PresentationExchange.InitiatorEnum;
        /**
         * (Indy) presentation (also known as proof)
         * @type {IndyProof}
         * @memberof V10PresentationExchange
         */
        presentation?: IndyProof;
        /**
         * Presentation exchange identifier
         * @type {string}
         * @memberof V10PresentationExchange
         */
        presentation_exchange_id?: string;
        /**
         * Presentation proposal message
         * @type {PresentationProposal}
         * @memberof V10PresentationExchange
         */
        presentation_proposal_dict?: PresentationProposal;
        /**
         * (Indy) presentation request (also known as proof request)
         * @type {IndyProofRequest}
         * @memberof V10PresentationExchange
         */
        presentation_request?: IndyProofRequest;
        /**
         * Presentation request message
         * @type {PresentationRequest}
         * @memberof V10PresentationExchange
         */
        presentation_request_dict?: PresentationRequest;
        /**
         * Present-proof exchange role: prover or verifier
         * @type {string}
         * @memberof V10PresentationExchange
         */
        role?: V10PresentationExchange.RoleEnum;
        /**
         * Present-proof exchange state
         * @type {string}
         * @memberof V10PresentationExchange
         */
        state?: string;
        /**
         * Thread identifier
         * @type {string}
         * @memberof V10PresentationExchange
         */
        thread_id?: string;
        /**
         * Record trace information, based on agent configuration
         * @type {boolean}
         * @memberof V10PresentationExchange
         */
        trace?: boolean;
        /**
         * Time of last record update
         * @type {string}
         * @memberof V10PresentationExchange
         */
        updated_at?: string;
        /**
         * Whether presentation is verified: true or false
         * @type {string}
         * @memberof V10PresentationExchange
         */
        verified?: V10PresentationExchange.VerifiedEnum;
        /**
         *
         * @type {Array<string>}
         * @memberof V10PresentationExchange
         */
        verified_msgs?: Array<string>;
    }
    
    /**
     * @export
     * @namespace V10PresentationExchange
     */
    export namespace V10PresentationExchange {
        /**
         * @export
         * @enum {string}
         */
        export enum InitiatorEnum {
            Self = <any> 'self',
            External = <any> 'external'
        }
        /**
         * @export
         * @enum {string}
         */
        export enum RoleEnum {
            Prover = <any> 'prover',
            Verifier = <any> 'verifier'
        }
        /**
         * @export
         * @enum {string}
         */
        export enum VerifiedEnum {
            True = <any> 'true',
            False = <any> 'false'
        }
    }
    /**
     *
     * @export
     * @interface V10PresentationExchangeList
     */
    export interface V10PresentationExchangeList {
        /**
         * Aries RFC 37 v1.0 presentation exchange records
         * @type {Array<V10PresentationExchange>}
         * @memberof V10PresentationExchangeList
         */
        results?: Array<V10PresentationExchange>;
    }
    /**
     *
     * @export
     * @interface V10PresentationProblemReportRequest
     */
    export interface V10PresentationProblemReportRequest {
        /**
         *
         * @type {string}
         * @memberof V10PresentationProblemReportRequest
         */
        description: string;
    }
    /**
     *
     * @export
     * @interface V10PresentationProposalRequest
     */
    export interface V10PresentationProposalRequest {
        /**
         * Whether to respond automatically to presentation requests, building and presenting requested proof
         * @type {boolean}
         * @memberof V10PresentationProposalRequest
         */
        auto_present?: boolean;
        /**
         * Human-readable comment
         * @type {string}
         * @memberof V10PresentationProposalRequest
         */
        comment?: string;
        /**
         * Connection identifier
         * @type {string}
         * @memberof V10PresentationProposalRequest
         */
        connection_id: string;
        /**
         *
         * @type {IndyPresPreview}
         * @memberof V10PresentationProposalRequest
         */
        presentation_proposal: IndyPresPreview;
        /**
         * Whether to trace event (default false)
         * @type {boolean}
         * @memberof V10PresentationProposalRequest
         */
        trace?: boolean;
    }
    /**
     *
     * @export
     * @interface V10PresentationSendRequestRequest
     */
    export interface V10PresentationSendRequestRequest {
        /**
         * Verifier choice to auto-verify proof presentation
         * @type {boolean}
         * @memberof V10PresentationSendRequestRequest
         */
        auto_verify?: boolean;
        /**
         *
         * @type {string}
         * @memberof V10PresentationSendRequestRequest
         */
        comment?: string;
        /**
         * Connection identifier
         * @type {string}
         * @memberof V10PresentationSendRequestRequest
         */
        connection_id: string;
        /**
         *
         * @type {IndyProofRequest}
         * @memberof V10PresentationSendRequestRequest
         */
        proof_request: IndyProofRequest;
        /**
         * Whether to trace event (default false)
         * @type {boolean}
         * @memberof V10PresentationSendRequestRequest
         */
        trace?: boolean;
    }
    /**
     *
     * @export
     * @interface V10PresentationSendRequestToProposal
     */
    export interface V10PresentationSendRequestToProposal {
        /**
         * Verifier choice to auto-verify proof presentation
         * @type {boolean}
         * @memberof V10PresentationSendRequestToProposal
         */
        auto_verify?: boolean;
        /**
         * Whether to trace event (default false)
         * @type {boolean}
         * @memberof V10PresentationSendRequestToProposal
         */
        trace?: boolean;
    }
    /**
     *
     * @export
     * @interface V20CredAttrSpec
     */
    export interface V20CredAttrSpec {
        /**
         * MIME type: omit for (null) default
         * @type {string}
         * @memberof V20CredAttrSpec
         */
        mime_type?: string;
        /**
         * Attribute name
         * @type {string}
         * @memberof V20CredAttrSpec
         */
        name: string;
        /**
         * Attribute value: base64-encode if MIME type is present
         * @type {string}
         * @memberof V20CredAttrSpec
         */
        value: string;
    }
    /**
     *
     * @export
     * @interface V20CredBoundOfferRequest
     */
    export interface V20CredBoundOfferRequest {
        /**
         * Optional content for counter-proposal
         * @type {V20CredPreview}
         * @memberof V20CredBoundOfferRequest
         */
        counter_preview?: V20CredPreview;
        /**
         * Credential specification criteria by format
         * @type {V20CredFilter}
         * @memberof V20CredBoundOfferRequest
         */
        filter?: V20CredFilter;
    }
    /**
     *
     * @export
     * @interface V20CredExFree
     */
    export interface V20CredExFree {
        /**
         * Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting)
         * @type {boolean}
         * @memberof V20CredExFree
         */
        auto_remove?: boolean;
        /**
         * Human-readable comment
         * @type {string}
         * @memberof V20CredExFree
         */
        comment?: string;
        /**
         * Connection identifier
         * @type {string}
         * @memberof V20CredExFree
         */
        connection_id: string;
        /**
         *
         * @type {V20CredPreview}
         * @memberof V20CredExFree
         */
        credential_preview?: V20CredPreview;
        /**
         * Credential specification criteria by format
         * @type {V20CredFilter}
         * @memberof V20CredExFree
         */
        filter: V20CredFilter;
        /**
         * Record trace information, based on agent configuration
         * @type {boolean}
         * @memberof V20CredExFree
         */
        trace?: boolean;
    }
    /**
     *
     * @export
     * @interface V20CredExRecord
     */
    export interface V20CredExRecord {
        /**
         * Issuer choice to issue to request in this credential exchange
         * @type {boolean}
         * @memberof V20CredExRecord
         */