[DSC-389] merged with main branch

This commit is contained in:
Pratik Rajkotiya
2022-02-02 19:11:06 +05:30
parent e4d099df43
commit 57ff37ec7f
78 changed files with 9098 additions and 291 deletions

View File

@@ -0,0 +1,25 @@
/**
* An interface to represent an access condition.
*/
export class AccessConditionObject {
/**
* The access condition id
*/
id: string;
/**
* The access condition name
*/
name: string;
/**
* Possible start date of the access condition
*/
startDate: string;
/**
* Possible end date of the access condition
*/
endDate: string;
}