Newer
Older
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
7155
7156
7157
7158
7159
7160
7161
7162
7163
7164
7165
7166
7167
7168
7169
7170
7171
7172
7173
7174
7175
7176
7177
7178
7179
7180
7181
7182
7183
7184
7185
7186
7187
7188
7189
7190
7191
7192
7193
7194
7195
7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
7208
7209
7210
7211
7212
7213
7214
7215
7216
7217
7218
7219
7220
7221
7222
7223
7224
7225
7226
7227
7228
7229
7230
7231
7232
7233
7234
7235
7236
7237
7238
7239
7240
7241
7242
7243
7244
7245
7246
7247
7248
7249
7250
7251
7252
7253
7254
7255
7256
7257
7258
7259
7260
7261
7262
7263
7264
7265
7266
7267
7268
7269
7270
7271
7272
7273
7274
7275
7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
7671
7672
7673
7674
7675
7676
7677
7678
7679
7680
7681
7682
7683
7684
7685
7686
7687
7688
7689
7690
7691
7692
7693
7694
7695
7696
7697
7698
7699
7700
7701
7702
7703
7704
7705
7706
7707
7708
7709
7710
7711
7712
7713
7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
7724
7725
7726
7727
7728
7729
7730
7731
7732
7733
7734
7735
7736
7737
7738
7739
7740
7741
7742
7743
7744
7745
7746
7747
7748
7749
7750
7751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
7763
7764
7765
7766
7767
7768
7769
7770
7771
7772
7773
7774
7775
7776
7777
7778
7779
7780
7781
7782
7783
7784
7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
7795
7796
7797
7798
7799
7800
7801
7802
7803
7804
7805
7806
7807
7808
7809
7810
7811
7812
7813
7814
7815
7816
7817
7818
7819
7820
7821
7822
7823
7824
7825
7826
7827
7828
7829
7830
7831
7832
7833
7834
7835
7836
7837
7838
7839
7840
7841
7842
7843
7844
7845
7846
7847
7848
7849
7850
7851
7852
7853
7854
7855
7856
7857
7858
7859
7860
7861
7862
7863
7864
7865
7866
7867
7868
7869
7870
7871
7872
7873
7874
7875
7876
7877
7878
7879
7880
7881
7882
7883
7884
7885
7886
7887
7888
7889
7890
7891
7892
7893
7894
7895
7896
7897
7898
7899
7900
7901
7902
7903
7904
7905
7906
7907
7908
7909
7910
7911
7912
7913
7914
7915
7916
7917
7918
7919
7920
7921
7922
7923
7924
7925
7926
7927
7928
7929
7930
7931
7932
7933
7934
7935
7936
7937
7938
7939
7940
7941
7942
7943
7944
7945
7946
7947
7948
7949
7950
7951
7952
7953
7954
7955
7956
7957
7958
7959
7960
7961
7962
7963
7964
7965
7966
7967
7968
7969
7970
7971
7972
7973
7974
7975
7976
7977
7978
7979
7980
7981
7982
7983
7984
7985
7986
7987
7988
7989
7990
7991
7992
7993
7994
7995
7996
7997
7998
7999
8000
auto_issue?: boolean;
/**
* Holder choice to accept offer in this credential exchange
* @type {boolean}
* @memberof V20CredExRecord
*/
auto_offer?: boolean;
/**
* Issuer choice to remove this credential exchange record when complete
* @type {boolean}
* @memberof V20CredExRecord
*/
auto_remove?: boolean;
/**
* Attachment content by format for proposal, offer, request, and issue
* @type {V20CredExRecordByFormat}
* @memberof V20CredExRecord
*/
by_format?: V20CredExRecordByFormat;
/**
* Connection identifier
* @type {string}
* @memberof V20CredExRecord
*/
connection_id?: string;
/**
* Time of record creation
* @type {string}
* @memberof V20CredExRecord
*/
created_at?: string;
/**
* Credential exchange identifier
* @type {string}
* @memberof V20CredExRecord
*/
cred_ex_id?: string;
/**
* Serialized credential issue message
* @type {V20CredIssue}
* @memberof V20CredExRecord
*/
cred_issue?: V20CredIssue;
/**
* Credential offer message
* @type {V20CredOffer}
* @memberof V20CredExRecord
*/
cred_offer?: V20CredOffer;
/**
* Credential preview from credential proposal
* @type {V20CredPreview}
* @memberof V20CredExRecord
*/
cred_preview?: V20CredPreview;
/**
* Credential proposal message
* @type {V20CredProposal}
* @memberof V20CredExRecord
*/
cred_proposal?: V20CredProposal;
/**
* Serialized credential request message
* @type {V20CredRequest}
* @memberof V20CredExRecord
*/
cred_request?: V20CredRequest;
/**
* Error message
* @type {string}
* @memberof V20CredExRecord
*/
error_msg?: string;
/**
* Issue-credential exchange initiator: self or external
* @type {string}
* @memberof V20CredExRecord
*/
initiator?: V20CredExRecord.InitiatorEnum;
/**
* Parent thread identifier
* @type {string}
* @memberof V20CredExRecord
*/
parent_thread_id?: string;
/**
* Issue-credential exchange role: holder or issuer
* @type {string}
* @memberof V20CredExRecord
*/
role?: V20CredExRecord.RoleEnum;
/**
* Issue-credential exchange state
* @type {string}
* @memberof V20CredExRecord
*/
state?: V20CredExRecord.StateEnum;
/**
* Thread identifier
* @type {string}
* @memberof V20CredExRecord
*/
thread_id?: string;
/**
* Record trace information, based on agent configuration
* @type {boolean}
* @memberof V20CredExRecord
*/
trace?: boolean;
/**
* Time of last record update
* @type {string}
* @memberof V20CredExRecord
*/
updated_at?: string;
}
/**
* @export
* @namespace V20CredExRecord
*/
export namespace V20CredExRecord {
/**
* @export
* @enum {string}
*/
export enum InitiatorEnum {
Self = <any> 'self',
External = <any> 'external'
}
/**
* @export
* @enum {string}
*/
export enum RoleEnum {
Issuer = <any> 'issuer',
Holder = <any> 'holder'
}
/**
* @export
* @enum {string}
*/
export enum StateEnum {
ProposalSent = <any> 'proposal-sent',
ProposalReceived = <any> 'proposal-received',
OfferSent = <any> 'offer-sent',
OfferReceived = <any> 'offer-received',
RequestSent = <any> 'request-sent',
RequestReceived = <any> 'request-received',
CredentialIssued = <any> 'credential-issued',
CredentialReceived = <any> 'credential-received',
Done = <any> 'done',
CredentialRevoked = <any> 'credential-revoked',
Abandoned = <any> 'abandoned'
}
}
/**
*
* @export
* @interface V20CredExRecordByFormat
*/
export interface V20CredExRecordByFormat {
/**
*
* @type {any}
* @memberof V20CredExRecordByFormat
*/
cred_issue?: any;
/**
*
* @type {any}
* @memberof V20CredExRecordByFormat
*/
cred_offer?: any;
/**
*
* @type {any}
* @memberof V20CredExRecordByFormat
*/
cred_proposal?: any;
/**
*
* @type {any}
* @memberof V20CredExRecordByFormat
*/
cred_request?: any;
}
/**
*
* @export
* @interface V20CredExRecordDetail
*/
export interface V20CredExRecordDetail {
/**
* Credential exchange record
* @type {V20CredExRecord}
* @memberof V20CredExRecordDetail
*/
cred_ex_record?: V20CredExRecord;
/**
*
* @type {V20CredExRecordIndy}
* @memberof V20CredExRecordDetail
*/
indy?: V20CredExRecordIndy;
/**
*
* @type {V20CredExRecordLDProof}
* @memberof V20CredExRecordDetail
*/
ld_proof?: V20CredExRecordLDProof;
}
/**
*
* @export
* @interface V20CredExRecordIndy
*/
export interface V20CredExRecordIndy {
/**
* Time of record creation
* @type {string}
* @memberof V20CredExRecordIndy
*/
created_at?: string;
/**
* Corresponding v2.0 credential exchange record identifier
* @type {string}
* @memberof V20CredExRecordIndy
*/
cred_ex_id?: string;
/**
* Record identifier
* @type {string}
* @memberof V20CredExRecordIndy
*/
cred_ex_indy_id?: string;
/**
* Credential identifier stored in wallet
* @type {string}
* @memberof V20CredExRecordIndy
*/
cred_id_stored?: string;
/**
* Credential request metadata for indy holder
* @type {any}
* @memberof V20CredExRecordIndy
*/
cred_request_metadata?: any;
/**
* Credential revocation identifier within revocation registry
* @type {string}
* @memberof V20CredExRecordIndy
*/
cred_rev_id?: string;
/**
* Revocation registry identifier
* @type {string}
* @memberof V20CredExRecordIndy
*/
rev_reg_id?: string;
/**
* Current record state
* @type {string}
* @memberof V20CredExRecordIndy
*/
state?: string;
/**
* Time of last record update
* @type {string}
* @memberof V20CredExRecordIndy
*/
updated_at?: string;
}
/**
*
* @export
* @interface V20CredExRecordLDProof
*/
export interface V20CredExRecordLDProof {
/**
* Time of record creation
* @type {string}
* @memberof V20CredExRecordLDProof
*/
created_at?: string;
/**
* Corresponding v2.0 credential exchange record identifier
* @type {string}
* @memberof V20CredExRecordLDProof
*/
cred_ex_id?: string;
/**
* Record identifier
* @type {string}
* @memberof V20CredExRecordLDProof
*/
cred_ex_ld_proof_id?: string;
/**
* Credential identifier stored in wallet
* @type {string}
* @memberof V20CredExRecordLDProof
*/
cred_id_stored?: string;
/**
* Current record state
* @type {string}
* @memberof V20CredExRecordLDProof
*/
state?: string;
/**
* Time of last record update
* @type {string}
* @memberof V20CredExRecordLDProof
*/
updated_at?: string;
}
/**
*
* @export
* @interface V20CredExRecordListResult
*/
export interface V20CredExRecordListResult {
/**
* Credential exchange records and corresponding detail records
* @type {Array<V20CredExRecordDetail>}
* @memberof V20CredExRecordListResult
*/
results?: Array<V20CredExRecordDetail>;
}
/**
*
* @export
* @interface V20CredFilter
*/
export interface V20CredFilter {
/**
* Credential filter for indy
* @type {V20CredFilterIndy}
* @memberof V20CredFilter
*/
indy?: V20CredFilterIndy;
/**
* Credential filter for linked data proof
* @type {LDProofVCDetail}
* @memberof V20CredFilter
*/
ld_proof?: LDProofVCDetail;
}
/**
*
* @export
* @interface V20CredFilterIndy
*/
export interface V20CredFilterIndy {
/**
* Credential definition identifier
* @type {string}
* @memberof V20CredFilterIndy
*/
cred_def_id?: string;
/**
* Credential issuer DID
* @type {string}
* @memberof V20CredFilterIndy
*/
issuer_did?: string;
/**
* Schema identifier
* @type {string}
* @memberof V20CredFilterIndy
*/
schema_id?: string;
/**
* Schema issuer DID
* @type {string}
* @memberof V20CredFilterIndy
*/
schema_issuer_did?: string;
/**
* Schema name
* @type {string}
* @memberof V20CredFilterIndy
*/
schema_name?: string;
/**
* Schema version
* @type {string}
* @memberof V20CredFilterIndy
*/
schema_version?: string;
}
/**
*
* @export
* @interface V20CredFilterLDProof
*/
export interface V20CredFilterLDProof {
/**
* Credential filter for linked data proof
* @type {LDProofVCDetail}
* @memberof V20CredFilterLDProof
*/
ld_proof: LDProofVCDetail;
}
/**
*
* @export
* @interface V20CredFormat
*/
export interface V20CredFormat {
/**
* Attachment identifier
* @type {string}
* @memberof V20CredFormat
*/
attach_id: string;
/**
* Attachment format specifier
* @type {string}
* @memberof V20CredFormat
*/
format: string;
}
/**
*
* @export
* @interface V20CredIssue
*/
export interface V20CredIssue {
/**
* Message identifier
* @type {string}
* @memberof V20CredIssue
*/
id?: string;
/**
* Message type
* @type {string}
* @memberof V20CredIssue
*/
type?: string;
/**
* Human-readable comment
* @type {string}
* @memberof V20CredIssue
*/
comment?: string;
/**
* Credential attachments
* @type {Array<AttachDecorator>}
* @memberof V20CredIssue
*/
credentialsattach: Array<AttachDecorator>;
/**
* Acceptable attachment formats
* @type {Array<V20CredFormat>}
* @memberof V20CredIssue
*/
formats: Array<V20CredFormat>;
/**
* Issuer-unique identifier to coordinate credential replacement
* @type {string}
* @memberof V20CredIssue
*/
replacement_id?: string;
}
/**
*
* @export
* @interface V20CredIssueProblemReportRequest
*/
export interface V20CredIssueProblemReportRequest {
/**
*
* @type {string}
* @memberof V20CredIssueProblemReportRequest
*/
description: string;
}
/**
*
* @export
* @interface V20CredIssueRequest
*/
export interface V20CredIssueRequest {
/**
* Human-readable comment
* @type {string}
* @memberof V20CredIssueRequest
*/
comment?: string;
}
/**
*
* @export
* @interface V20CredOffer
*/
export interface V20CredOffer {
/**
* Message identifier
* @type {string}
* @memberof V20CredOffer
*/
id?: string;
/**
* Message type
* @type {string}
* @memberof V20CredOffer
*/
type?: string;
/**
* Human-readable comment
* @type {string}
* @memberof V20CredOffer
*/
comment?: string;
/**
*
* @type {V20CredPreview}
* @memberof V20CredOffer
*/
credential_preview?: V20CredPreview;
/**
* Acceptable credential formats
* @type {Array<V20CredFormat>}
* @memberof V20CredOffer
*/
formats: Array<V20CredFormat>;
/**
* Offer attachments
* @type {Array<AttachDecorator>}
* @memberof V20CredOffer
*/
offersattach: Array<AttachDecorator>;
/**
* Issuer-unique identifier to coordinate credential replacement
* @type {string}
* @memberof V20CredOffer
*/
replacement_id?: string;
}
/**
*
* @export
* @interface V20CredOfferConnFreeRequest
*/
export interface V20CredOfferConnFreeRequest {
/**
* Whether to respond automatically to credential requests, creating and issuing requested credentials
* @type {boolean}
* @memberof V20CredOfferConnFreeRequest
*/
auto_issue?: boolean;
/**
* Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting)
* @type {boolean}
* @memberof V20CredOfferConnFreeRequest
*/
auto_remove?: boolean;
/**
* Human-readable comment
* @type {string}
* @memberof V20CredOfferConnFreeRequest
*/
comment?: string;
/**
*
* @type {V20CredPreview}
* @memberof V20CredOfferConnFreeRequest
*/
credential_preview?: V20CredPreview;
/**
* Credential specification criteria by format
* @type {V20CredFilter}
* @memberof V20CredOfferConnFreeRequest
*/
filter: V20CredFilter;
/**
* Record trace information, based on agent configuration
* @type {boolean}
* @memberof V20CredOfferConnFreeRequest
*/
trace?: boolean;
}
/**
*
* @export
* @interface V20CredOfferRequest
*/
export interface V20CredOfferRequest {
/**
* Whether to respond automatically to credential requests, creating and issuing requested credentials
* @type {boolean}
* @memberof V20CredOfferRequest
*/
auto_issue?: boolean;
/**
* Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting)
* @type {boolean}
* @memberof V20CredOfferRequest
*/
auto_remove?: boolean;
/**
* Human-readable comment
* @type {string}
* @memberof V20CredOfferRequest
*/
comment?: string;
/**
* Connection identifier
* @type {string}
* @memberof V20CredOfferRequest
*/
connection_id: string;
/**
*
* @type {V20CredPreview}
* @memberof V20CredOfferRequest
*/
credential_preview?: V20CredPreview;
/**
* Credential specification criteria by format
* @type {V20CredFilter}
* @memberof V20CredOfferRequest
*/
filter: V20CredFilter;
/**
* Record trace information, based on agent configuration
* @type {boolean}
* @memberof V20CredOfferRequest
*/
trace?: boolean;
}
/**
*
* @export
* @interface V20CredPreview
*/
export interface V20CredPreview {
/**
* Message type identifier
* @type {string}
* @memberof V20CredPreview
*/
type?: string;
/**
*
* @type {Array<V20CredAttrSpec>}
* @memberof V20CredPreview
*/
attributes: Array<V20CredAttrSpec>;
}
/**
*
* @export
* @interface V20CredProposal
*/
export interface V20CredProposal {
/**
* Message identifier
* @type {string}
* @memberof V20CredProposal
*/
id?: string;
/**
* Message type
* @type {string}
* @memberof V20CredProposal
*/
type?: string;
/**
* Human-readable comment
* @type {string}
* @memberof V20CredProposal
*/
comment?: string;
/**
* Credential preview
* @type {V20CredPreview}
* @memberof V20CredProposal
*/
credential_preview?: V20CredPreview;
/**
* Credential filter per acceptable format on corresponding identifier
* @type {Array<AttachDecorator>}
* @memberof V20CredProposal
*/
filtersattach: Array<AttachDecorator>;
/**
* Attachment formats
* @type {Array<V20CredFormat>}
* @memberof V20CredProposal
*/
formats: Array<V20CredFormat>;
}
/**
*
* @export
* @interface V20CredRequest
*/
export interface V20CredRequest {
/**
* Message identifier
* @type {string}
* @memberof V20CredRequest
*/
id?: string;
/**
* Message type
* @type {string}
* @memberof V20CredRequest
*/
type?: string;
/**
* Human-readable comment
* @type {string}
* @memberof V20CredRequest
*/
comment?: string;
/**
* Acceptable attachment formats
* @type {Array<V20CredFormat>}
* @memberof V20CredRequest
*/
formats: Array<V20CredFormat>;
/**
* Request attachments
* @type {Array<AttachDecorator>}
* @memberof V20CredRequest
*/
requestsattach: Array<AttachDecorator>;
}
/**
*
* @export
* @interface V20CredRequestFree
*/
export interface V20CredRequestFree {
/**
* Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting)
* @type {boolean}
* @memberof V20CredRequestFree
*/
auto_remove?: boolean;
/**
* Human-readable comment
* @type {string}
* @memberof V20CredRequestFree
*/
comment?: string;
/**
* Connection identifier
* @type {string}
* @memberof V20CredRequestFree
*/
connection_id: string;
/**
* Credential specification criteria by format
* @type {V20CredFilterLDProof}
* @memberof V20CredRequestFree
*/
filter: V20CredFilterLDProof;
/**
* Holder DID to substitute for the credentialSubject.id
* @type {string}
* @memberof V20CredRequestFree
*/
holder_did?: string;
/**
* Whether to trace event (default false)
* @type {boolean}
* @memberof V20CredRequestFree
*/
trace?: boolean;
}
/**
*
* @export
* @interface V20CredRequestRequest
*/
export interface V20CredRequestRequest {
/**
* Holder DID to substitute for the credentialSubject.id
* @type {string}
* @memberof V20CredRequestRequest
*/
holder_did?: string;
}
/**
*
* @export
* @interface V20CredStoreRequest
*/
export interface V20CredStoreRequest {
/**
*
* @type {string}
* @memberof V20CredStoreRequest
*/
credential_id?: string;
}
/**
*
* @export
* @interface V20DiscoveryExchangeListResult
*/
export interface V20DiscoveryExchangeListResult {
/**
*
* @type {Array<V20DiscoveryRecord>}
* @memberof V20DiscoveryExchangeListResult
*/
results?: Array<V20DiscoveryRecord>;
}
/**
*
* @export
* @interface V20DiscoveryExchangeResult
*/
export interface V20DiscoveryExchangeResult {
/**
* Discover Features v2.0 exchange record
* @type {V20DiscoveryRecord}
* @memberof V20DiscoveryExchangeResult
*/
results?: V20DiscoveryRecord;
}
/**
*
* @export
* @interface V20DiscoveryRecord
*/
export interface V20DiscoveryRecord {
/**
* Connection identifier
* @type {string}
* @memberof V20DiscoveryRecord
*/
connection_id?: string;
/**
* Time of record creation
* @type {string}
* @memberof V20DiscoveryRecord
*/
created_at?: string;
/**
* Disclosures message
* @type {Disclosures}
* @memberof V20DiscoveryRecord
*/
disclosures?: Disclosures;
/**
* Credential exchange identifier
* @type {string}
* @memberof V20DiscoveryRecord
*/
discovery_exchange_id?: string;
/**
* Queries message
* @type {Queries}
* @memberof V20DiscoveryRecord
*/
queries_msg?: Queries;
/**
* Current record state
* @type {string}
* @memberof V20DiscoveryRecord
*/
state?: string;
/**
* Thread identifier
* @type {string}
* @memberof V20DiscoveryRecord
*/
thread_id?: string;
/**
* Record trace information, based on agent configuration
* @type {boolean}
* @memberof V20DiscoveryRecord
*/
trace?: boolean;
/**
* Time of last record update
* @type {string}
* @memberof V20DiscoveryRecord
*/
updated_at?: string;
}
/**
*
* @export
* @interface V20IssueCredSchemaCore
*/
export interface V20IssueCredSchemaCore {
/**
* Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting)
* @type {boolean}
* @memberof V20IssueCredSchemaCore
*/
auto_remove?: boolean;
/**
* Human-readable comment
* @type {string}
* @memberof V20IssueCredSchemaCore
*/
comment?: string;
/**
*
* @type {V20CredPreview}
* @memberof V20IssueCredSchemaCore
*/
credential_preview?: V20CredPreview;
/**
* Credential specification criteria by format
* @type {V20CredFilter}
* @memberof V20IssueCredSchemaCore
*/
filter: V20CredFilter;
/**
* Record trace information, based on agent configuration
* @type {boolean}
* @memberof V20IssueCredSchemaCore
*/
trace?: boolean;
}
/**
*
* @export
* @interface V20IssueCredentialModuleResponse
*/
export interface V20IssueCredentialModuleResponse {
}
/**
*
* @export
* @interface V20Pres
*/
export interface V20Pres {
/**
* Message identifier
* @type {string}
* @memberof V20Pres
*/
id?: string;
/**
* Message type
* @type {string}
* @memberof V20Pres
*/
type?: string;
/**
* Human-readable comment
* @type {string}
* @memberof V20Pres
*/
comment?: string;
/**
* Acceptable attachment formats
* @type {Array<V20PresFormat>}
* @memberof V20Pres
*/
formats: Array<V20PresFormat>;
/**
*
* @type {Array<AttachDecorator>}
* @memberof V20Pres
*/
presentationsattach: Array<AttachDecorator>;
}
/**
*
* @export
* @interface V20PresCreateRequestRequest
*/
export interface V20PresCreateRequestRequest {
/**
* Verifier choice to auto-verify proof presentation
* @type {boolean}
* @memberof V20PresCreateRequestRequest
*/
auto_verify?: boolean;
/**
*
* @type {string}
* @memberof V20PresCreateRequestRequest
*/
comment?: string;
/**
*
* @type {V20PresRequestByFormat}
* @memberof V20PresCreateRequestRequest
*/
presentation_request: V20PresRequestByFormat;
/**
* Whether to trace event (default false)
* @type {boolean}
* @memberof V20PresCreateRequestRequest
*/
trace?: boolean;
}