mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
33 lines
576 B
TypeScript
33 lines
576 B
TypeScript
export interface IHourlyRateDto {
|
|
amount: number;
|
|
currency: string;
|
|
}
|
|
|
|
enum MembershipStatusEnum {
|
|
PENDING = 'PENDING',
|
|
ACTIVE = 'ACTIVE',
|
|
DECLINED = 'DECLINED',
|
|
INACTIVE = 'INACTIVE',
|
|
}
|
|
|
|
export interface IMembershipDto {
|
|
hourlyRate: IHourlyRateDto;
|
|
membershipStatus: MembershipStatusEnum;
|
|
membershipType: string;
|
|
targetId: string;
|
|
userId: string;
|
|
}
|
|
|
|
export interface ITagDto {
|
|
id: string;
|
|
name: any; // tslint:disable-line:no-any
|
|
workspaceId: string;
|
|
archived: boolean;
|
|
}
|
|
|
|
export interface ITimeIntervalDto {
|
|
duration: string;
|
|
end: string;
|
|
start: string;
|
|
}
|