Skip to content

Commit

Permalink
Comment code back in for now
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Richardson <mike.richardson@ontario.ca>
  • Loading branch information
NB-MikeRichardson committed Nov 24, 2022
1 parent b18d4f2 commit 1a00621
Showing 1 changed file with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,30 +20,30 @@ export class ProofType {
public proofType!: string[]
}

// export class LdpVc {
// public constructor(ldpVc: ProofType) {
// if (ldpVc) {
// this.ldpVc = ldpVc
// }
// }

// @Expose({ name: 'ldp_vc' })
// public ldpVc!: ProofType
// }
// export class LdpVp {
// public constructor(ldpVp: ProofType) {
// if (ldpVp) {
// this.ldpVp = ldpVp
// }
// }

// @Expose({ name: 'ldp_vp' })
// public ldpVp!: ProofType

// public toJSON() {
// return JsonTransformer.toJSON(this)
// }
// }
export class LdpVc {
public constructor(ldpVc: ProofType) {
if (ldpVc) {
this.ldpVc = ldpVc
}
}

@Expose({ name: 'ldp_vc' })
public ldpVc!: ProofType
}
export class LdpVp {
public constructor(ldpVp: ProofType) {
if (ldpVp) {
this.ldpVp = ldpVp
}
}

@Expose({ name: 'ldp_vp' })
public ldpVp!: ProofType

public toJSON() {
return JsonTransformer.toJSON(this)
}
}

export interface ClaimFormatSchemaOptions {
ldpVp?: ProofType
Expand Down

0 comments on commit 1a00621

Please sign in to comment.