Skip to content
Snippets Groups Projects
api.ts 814 KiB
Newer Older
  • Learn to ignore specific revisions
  • Alexey Lunin's avatar
    Alexey Lunin committed
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    /// <reference path="./custom.d.ts" />
    // tslint:disable
    /**
     * OCMacapy80
     * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
     *
     * OpenAPI spec version: v1.0.0-rc1
     *
     *
     * NOTE: This file is auto generated by the swagger code generator program.
     * https://github.com/swagger-api/swagger-codegen.git
     * Do not edit the file manually.
     */
    
    import * as url from "url";
    import * as isomorphicFetch from "isomorphic-fetch";
    import { Configuration } from "./configuration";
    
    const BASE_PATH = "/".replace(/\/+$/, "");
    
    /**
     *
     * @export
     */
    export const COLLECTION_FORMATS = {
        csv: ",",
        ssv: " ",
        tsv: "\t",
        pipes: "|",
    };
    
    /**
     *
     * @export
     * @interface FetchAPI
     */
    export interface FetchAPI {
        (url: string, init?: any): Promise<Response>;
    }
    
    /**
     *
     * @export
     * @interface FetchArgs
     */
    export interface FetchArgs {
        url: string;
        options: any;
    }
    
    /**
     *
     * @export
     * @class BaseAPI
     */
    export class BaseAPI {
        protected configuration: Configuration;
    
        constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected fetch: FetchAPI = isomorphicFetch) {
            if (configuration) {
                this.configuration = configuration;
                this.basePath = configuration.basePath || this.basePath;
            }
        }
    };
    
    /**
     *
     * @export
     * @class RequiredError
     * @extends {Error}
     */
    export class RequiredError extends Error {
        name: "RequiredError"
        constructor(public field: string, msg?: string) {
            super(msg);
        }
    }
    
    /**
     *
     * @export
     * @interface AMLRecord
     */
    export interface AMLRecord {
        /**
         *
         * @type {{ [key: string]: string; }}
         * @memberof AMLRecord
         */
        aml?: { [key: string]: string; };
        /**
         *
         * @type {string}
         * @memberof AMLRecord
         */
        amlContext?: string;
        /**
         *
         * @type {string}
         * @memberof AMLRecord
         */
        version?: string;
    }
    /**
     *
     * @export
     * @interface ActionMenuFetchResult
     */
    export interface ActionMenuFetchResult {
        /**
         * Action menu
         * @type {Menu}
         * @memberof ActionMenuFetchResult
         */
        result?: Menu;
    }
    /**
     *
     * @export
     * @interface ActionMenuModulesResult
     */
    export interface ActionMenuModulesResult {
    }
    /**
     *
     * @export
     * @interface AdminConfig
     */
    export interface AdminConfig {
        /**
         * Configuration settings
         * @type {any}
         * @memberof AdminConfig
         */
        config?: any;
    }
    /**
     *
     * @export
     * @interface AdminMediationDeny
     */
    export interface AdminMediationDeny {
        /**
         * List of mediator rules for recipient
         * @type {Array<string>}
         * @memberof AdminMediationDeny
         */
        mediator_terms?: Array<string>;
        /**
         * List of recipient rules for mediation
         * @type {Array<string>}
         * @memberof AdminMediationDeny
         */
        recipient_terms?: Array<string>;
    }
    /**
     *
     * @export
     * @interface AdminModules
     */
    export interface AdminModules {
        /**
         * List of admin modules
         * @type {Array<string>}
         * @memberof AdminModules
         */
        result?: Array<string>;
    }
    /**
     *
     * @export
     * @interface AdminReset
     */
    export interface AdminReset {
    }
    /**
     *
     * @export
     * @interface AdminShutdown
     */
    export interface AdminShutdown {
    }
    /**
     *
     * @export
     * @interface AdminStatus
     */
    export interface AdminStatus {
        /**
         * Conductor statistics
         * @type {any}
         * @memberof AdminStatus
         */
        conductor?: any;
        /**
         * Default label
         * @type {string}
         * @memberof AdminStatus
         */
        label?: string;
        /**
         * Timing results
         * @type {any}
         * @memberof AdminStatus
         */
        timing?: any;
        /**
         * Version code
         * @type {string}
         * @memberof AdminStatus
         */
        version?: string;
    }
    /**
     *
     * @export
     * @interface AdminStatusLiveliness
     */
    export interface AdminStatusLiveliness {
        /**
         * Liveliness status
         * @type {boolean}
         * @memberof AdminStatusLiveliness
         */
        alive?: boolean;
    }
    /**
     *
     * @export
     * @interface AdminStatusReadiness
     */
    export interface AdminStatusReadiness {
        /**
         * Readiness status
         * @type {boolean}
         * @memberof AdminStatusReadiness
         */
        ready?: boolean;
    }
    /**
     *
     * @export
     * @interface AttachDecorator
     */
    export interface AttachDecorator {
        /**
         * Attachment identifier
         * @type {string}
         * @memberof AttachDecorator
         */
        id?: string;
        /**
         * Byte count of data included by reference
         * @type {number}
         * @memberof AttachDecorator
         */
        byte_count?: number;
        /**
         *
         * @type {AttachDecoratorData}
         * @memberof AttachDecorator
         */
        data: AttachDecoratorData;
        /**
         * Human-readable description of content
         * @type {string}
         * @memberof AttachDecorator
         */
        description?: string;
        /**
         * File name
         * @type {string}
         * @memberof AttachDecorator
         */
        filename?: string;
        /**
         * Hint regarding last modification datetime, in ISO-8601 format
         * @type {string}
         * @memberof AttachDecorator
         */
        lastmod_time?: string;
        /**
         * MIME type
         * @type {string}
         * @memberof AttachDecorator
         */
        mime_type?: string;
    }
    /**
     *
     * @export
     * @interface AttachDecoratorData
     */
    export interface AttachDecoratorData {
        /**
         * Base64-encoded data
         * @type {string}
         * @memberof AttachDecoratorData
         */
        base64?: string;
        /**
         * JSON-serialized data
         * @type {any}
         * @memberof AttachDecoratorData
         */
        json?: any;
        /**
         * Detached Java Web Signature
         * @type {AttachDecoratorDataJWS}
         * @memberof AttachDecoratorData
         */
        jws?: AttachDecoratorDataJWS;
        /**
         * List of hypertext links to data
         * @type {Array<string>}
         * @memberof AttachDecoratorData
         */
        links?: Array<string>;
        /**
         * SHA256 hash (binhex encoded) of content
         * @type {string}
         * @memberof AttachDecoratorData
         */
        sha256?: string;
    }
    /**
     *
     * @export
     * @interface AttachDecoratorData1JWS
     */
    export interface AttachDecoratorData1JWS {
        /**
         *
         * @type {AttachDecoratorDataJWSHeader}
         * @memberof AttachDecoratorData1JWS
         */
        header: AttachDecoratorDataJWSHeader;
        /**
         * protected JWS header
         * @type {string}
         * @memberof AttachDecoratorData1JWS
         */
        _protected?: string;
        /**
         * signature
         * @type {string}
         * @memberof AttachDecoratorData1JWS
         */
        signature: string;
    }
    /**
     *
     * @export
     * @interface AttachDecoratorDataJWS
     */
    export interface AttachDecoratorDataJWS {
        /**
         *
         * @type {AttachDecoratorDataJWSHeader}
         * @memberof AttachDecoratorDataJWS
         */
        header?: AttachDecoratorDataJWSHeader;
        /**
         * protected JWS header
         * @type {string}
         * @memberof AttachDecoratorDataJWS
         */
        _protected?: string;
        /**
         * signature
         * @type {string}
         * @memberof AttachDecoratorDataJWS
         */
        signature?: string;
        /**
         * List of signatures
         * @type {Array<AttachDecoratorData1JWS>}
         * @memberof AttachDecoratorDataJWS
         */
        signatures?: Array<AttachDecoratorData1JWS>;
    }
    /**
     *
     * @export
     * @interface AttachDecoratorDataJWSHeader
     */
    export interface AttachDecoratorDataJWSHeader {
        /**
         * Key identifier, in W3C did:key or DID URL format
         * @type {string}
         * @memberof AttachDecoratorDataJWSHeader
         */
        kid: string;
    }
    /**
     *
     * @export
     * @interface AttachmentDef
     */
    export interface AttachmentDef {
        /**
         * Attachment identifier
         * @type {string}
         * @memberof AttachmentDef
         */
        id?: string;
        /**
         * Attachment type
         * @type {string}
         * @memberof AttachmentDef
         */
        type?: AttachmentDef.TypeEnum;
    }
    
    /**
     * @export
     * @namespace AttachmentDef
     */
    export namespace AttachmentDef {
        /**
         * @export
         * @enum {string}
         */
        export enum TypeEnum {
            CredentialOffer = <any> 'credential-offer',
            PresentProof = <any> 'present-proof'
        }
    }
    /**
     *
     * @export
     * @interface AttributeMimeTypesResult
     */
    export interface AttributeMimeTypesResult {
        /**
         *
         * @type {{ [key: string]: string; }}
         * @memberof AttributeMimeTypesResult
         */
        results?: { [key: string]: string; };
    }
    /**
     *
     * @export
     * @interface BasicMessageModuleResponse
     */
    export interface BasicMessageModuleResponse {
    }
    /**
     *
     * @export
     * @interface ClaimFormat
     */
    export interface ClaimFormat {
        /**
         *
         * @type {any}
         * @memberof ClaimFormat
         */
        jwt?: any;
        /**
         *
         * @type {any}
         * @memberof ClaimFormat
         */
        jwt_vc?: any;
        /**
         *
         * @type {any}
         * @memberof ClaimFormat
         */
        jwt_vp?: any;
        /**
         *
         * @type {any}
         * @memberof ClaimFormat
         */
        ldp?: any;
        /**
         *
         * @type {any}
         * @memberof ClaimFormat
         */
        ldp_vc?: any;
        /**
         *
         * @type {any}
         * @memberof ClaimFormat
         */
        ldp_vp?: any;
    }
    /**
     *
     * @export
     * @interface ClearPendingRevocationsRequest
     */
    export interface ClearPendingRevocationsRequest {
        /**
         * Credential revocation ids by revocation registry id: omit for all, specify null or empty list for all pending per revocation registry
         * @type {{ [key: string]: Array<string>; }}
         * @memberof ClearPendingRevocationsRequest
         */
        purge?: { [key: string]: Array<string>; };
    }
    /**
     *
     * @export
     * @interface ConnRecord
     */
    export interface ConnRecord {
        /**
         * Connection acceptance: manual or auto
         * @type {string}
         * @memberof ConnRecord
         */
        accept?: ConnRecord.AcceptEnum;
        /**
         * Optional alias to apply to connection for later use
         * @type {string}
         * @memberof ConnRecord
         */
        alias?: string;
        /**
         * Connection identifier
         * @type {string}
         * @memberof ConnRecord
         */
        connection_id?: string;
        /**
         * Connection protocol used
         * @type {string}
         * @memberof ConnRecord
         */
        connection_protocol?: ConnRecord.ConnectionProtocolEnum;
        /**
         * Time of record creation
         * @type {string}
         * @memberof ConnRecord
         */
        created_at?: string;
        /**
         * Error message
         * @type {string}
         * @memberof ConnRecord
         */
        error_msg?: string;
        /**
         * Inbound routing connection id to use
         * @type {string}
         * @memberof ConnRecord
         */
        inbound_connection_id?: string;
        /**
         * Public key for connection
         * @type {string}
         * @memberof ConnRecord
         */
        invitation_key?: string;
        /**
         * Invitation mode
         * @type {string}
         * @memberof ConnRecord
         */
        invitation_mode?: ConnRecord.InvitationModeEnum;
        /**
         * ID of out-of-band invitation message
         * @type {string}
         * @memberof ConnRecord
         */
        invitation_msg_id?: string;
        /**
         * Our DID for connection
         * @type {string}
         * @memberof ConnRecord
         */
        my_did?: string;
        /**
         * Connection request identifier
         * @type {string}
         * @memberof ConnRecord
         */
        request_id?: string;
        /**
         * State per RFC 23
         * @type {string}
         * @memberof ConnRecord
         */
        rfc23_state?: string;
        /**
         * Routing state of connection
         * @type {string}
         * @memberof ConnRecord
         */
        routing_state?: ConnRecord.RoutingStateEnum;
        /**
         * Current record state
         * @type {string}
         * @memberof ConnRecord
         */
        state?: string;
        /**
         * Their DID for connection
         * @type {string}
         * @memberof ConnRecord
         */
        their_did?: string;
        /**
         * Their label for connection
         * @type {string}
         * @memberof ConnRecord
         */
        their_label?: string;
        /**
         * Other agent's public DID for connection
         * @type {string}
         * @memberof ConnRecord
         */
        their_public_did?: string;
        /**
         * Their role in the connection protocol
         * @type {string}
         * @memberof ConnRecord
         */
        their_role?: ConnRecord.TheirRoleEnum;
        /**
         * Time of last record update
         * @type {string}
         * @memberof ConnRecord
         */
        updated_at?: string;
    }
    
    /**
     * @export
     * @namespace ConnRecord
     */
    export namespace ConnRecord {
        /**
         * @export
         * @enum {string}
         */
        export enum AcceptEnum {
            Manual = <any> 'manual',
            Auto = <any> 'auto'
        }
        /**
         * @export
         * @enum {string}
         */
        export enum ConnectionProtocolEnum {
            Connections10 = <any> 'connections/1.0',
            Didexchange10 = <any> 'didexchange/1.0'
        }
        /**
         * @export
         * @enum {string}
         */
        export enum InvitationModeEnum {
            Once = <any> 'once',
            Multi = <any> 'multi',
            Static = <any> 'static'
        }
        /**
         * @export
         * @enum {string}
         */
        export enum RoutingStateEnum {
            None = <any> 'none',
            Request = <any> 'request',
            Active = <any> 'active',
            Error = <any> 'error'
        }
        /**
         * @export
         * @enum {string}
         */
        export enum TheirRoleEnum {
            Invitee = <any> 'invitee',
            Requester = <any> 'requester',
            Inviter = <any> 'inviter',
            Responder = <any> 'responder'
        }
    }
    /**
     *
     * @export
     * @interface ConnectionInvitation
     */
    export interface ConnectionInvitation {
        /**
         * Message identifier
         * @type {string}
         * @memberof ConnectionInvitation
         */
        id?: string;
        /**
         * Message type
         * @type {string}
         * @memberof ConnectionInvitation
         */
        type?: string;
        /**
         * DID for connection invitation
         * @type {string}
         * @memberof ConnectionInvitation
         */
        did?: string;
        /**
         * Optional image URL for connection invitation
         * @type {string}
         * @memberof ConnectionInvitation
         */
        imageUrl?: string;
        /**
         * Optional label for connection invitation
         * @type {string}
         * @memberof ConnectionInvitation
         */
        label?: string;
        /**
         * List of recipient keys
         * @type {Array<string>}
         * @memberof ConnectionInvitation
         */
        recipientKeys?: Array<string>;
        /**
         * List of routing keys
         * @type {Array<string>}
         * @memberof ConnectionInvitation
         */
        routingKeys?: Array<string>;
        /**
         * Service endpoint at which to reach this agent
         * @type {string}
         * @memberof ConnectionInvitation
         */
        serviceEndpoint?: string;
    }
    /**
     *
     * @export
     * @interface ConnectionList
     */
    export interface ConnectionList {
        /**
         * List of connection records
         * @type {Array<ConnRecord>}
         * @memberof ConnectionList
         */
        results?: Array<ConnRecord>;
    }
    /**
     *
     * @export
     * @interface ConnectionMetadata
     */
    export interface ConnectionMetadata {
        /**
         * Dictionary of metadata associated with connection.
         * @type {any}
         * @memberof ConnectionMetadata
         */
        results?: any;
    }
    /**
     *
     * @export
     * @interface ConnectionMetadataSetRequest
     */
    export interface ConnectionMetadataSetRequest {
        /**
         * Dictionary of metadata to set for connection.
         * @type {any}
         * @memberof ConnectionMetadataSetRequest
         */
        metadata: any;
    }
    /**
     *
     * @export
     * @interface ConnectionModuleResponse
     */
    export interface ConnectionModuleResponse {
    }
    /**
     *
     * @export
     * @interface ConnectionStaticRequest
     */
    export interface ConnectionStaticRequest {
        /**
         * Alias to assign to this connection
         * @type {string}
         * @memberof ConnectionStaticRequest
         */
        alias?: string;
        /**
         * Local DID
         * @type {string}
         * @memberof ConnectionStaticRequest
         */
        my_did?: string;
        /**
         * Seed to use for the local DID
         * @type {string}
         * @memberof ConnectionStaticRequest
         */
        my_seed?: string;
        /**
         * Remote DID
         * @type {string}
         * @memberof ConnectionStaticRequest
         */
        their_did?: string;
        /**
         * URL endpoint for other party
         * @type {string}
         * @memberof ConnectionStaticRequest
         */
        their_endpoint?: string;
        /**
         * Other party's label for this connection
         * @type {string}
         * @memberof ConnectionStaticRequest
         */
        their_label?: string;
        /**
         * Seed to use for the remote DID
         * @type {string}
         * @memberof ConnectionStaticRequest
         */
        their_seed?: string;
        /**
         * Remote verification key
         * @type {string}
         * @memberof ConnectionStaticRequest
         */
        their_verkey?: string;
    }
    /**
     *
     * @export
     * @interface ConnectionStaticResult
     */
    export interface ConnectionStaticResult {
        /**
         * Local DID
         * @type {string}
         * @memberof ConnectionStaticResult
         */
        my_did: string;
        /**
         * My URL endpoint
         * @type {string}
         * @memberof ConnectionStaticResult
         */
        my_endpoint: string;
        /**
         * My verification key
         * @type {string}
         * @memberof ConnectionStaticResult
         */
        my_verkey: string;
        /**
         *
         * @type {ConnRecord}
         * @memberof ConnectionStaticResult
         */
        record: ConnRecord;
        /**
         * Remote DID
         * @type {string}
         * @memberof ConnectionStaticResult
         */
        their_did: string;
        /**
         * Remote verification key
         * @type {string}
         * @memberof ConnectionStaticResult
         */
        their_verkey: string;
    }
    /**
     *
     * @export
     * @interface Constraints
     */
    export interface Constraints {
        /**
         *
         * @type {Array<DIFField>}
         * @memberof Constraints
         */
        fields?: Array<DIFField>;
        /**
         *
         * @type {Array<DIFHolder>}
         * @memberof Constraints
         */
        is_holder?: Array<DIFHolder>;
        /**
         * LimitDisclosure
         * @type {string}
         * @memberof Constraints
         */
        limit_disclosure?: string;
        /**
         *
         * @type {string}
         * @memberof Constraints
         */
        status_active?: Constraints.StatusActiveEnum;
        /**
         *
         * @type {string}
         * @memberof Constraints
         */
        status_revoked?: Constraints.StatusRevokedEnum;
        /**
         *
         * @type {string}
         * @memberof Constraints
         */
        status_suspended?: Constraints.StatusSuspendedEnum;
        /**
         * SubjectIsIssuer
         * @type {string}
         * @memberof Constraints
         */
        subject_is_issuer?: Constraints.SubjectIsIssuerEnum;
    }
    
    /**
     * @export
     * @namespace Constraints
     */
    export namespace Constraints {
        /**
         * @export
         * @enum {string}
         */
        export enum StatusActiveEnum {
            Required = <any> 'required',
            Allowed = <any> 'allowed',
            Disallowed = <any> 'disallowed'
        }
        /**
         * @export
         * @enum {string}
         */
        export enum StatusRevokedEnum {
            Required = <any> 'required',
            Allowed = <any> 'allowed',
            Disallowed = <any> 'disallowed'
        }
        /**
         * @export
         * @enum {string}
         */
        export enum StatusSuspendedEnum {
            Required = <any> 'required',
            Allowed = <any> 'allowed',
            Disallowed = <any> 'disallowed'
        }
        /**
         * @export
         * @enum {string}
         */
        export enum SubjectIsIssuerEnum {
            Required = <any> 'required',
            Preferred = <any> 'preferred'
        }
    }
    /**
     *
     * @export
     * @interface CreateInvitationRequest
     */
    export interface CreateInvitationRequest {
        /**
         * Identifier for active mediation record to be used
         * @type {string}
         * @memberof CreateInvitationRequest
         */
        mediation_id?: string;
        /**
         * Optional metadata to attach to the connection created with the invitation
         * @type {any}
         * @memberof CreateInvitationRequest
         */
        metadata?: any;
        /**
         * Optional label for connection invitation
         * @type {string}
         * @memberof CreateInvitationRequest
         */
        my_label?: string;
        /**
         * List of recipient keys