Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
credentialDefReq.dto.ts 899 B
import { ApiProperty } from '@nestjs/swagger';
import { IsString, IsNotEmpty, IsBoolean } from 'class-validator';

export default class CredentialDefReqDto {
  @IsString()
  public id: string;

  @IsString()
  @IsNotEmpty()
  @ApiProperty()
  public schemaID: string;

  @IsString()
  @IsNotEmpty()
  @ApiProperty()
  public name: string;

  @IsString()
  public credDefId: string;

  @IsBoolean()
  public supportRevocation?: boolean;

  @IsBoolean()
  @ApiProperty()
  public isRevokable: boolean;

  @IsBoolean()
  @ApiProperty()
  public isAutoIssue: boolean;

  @IsString()
  @ApiProperty()
  // Number of hours of Credential validity
  public expiryHours: string;

  @IsString()
  @ApiProperty()
  public createdBy: string;

  @IsString()
  public createdDate: Date;

  @IsString()
  public updatedBy: string;

  @IsString()
  public updatedDate: Date;

  @IsString()
  public tag?: string;
}