interface ActDto {
    id: string;
    isActive: boolean;
    localizedNames?: Record<Locale.ID, string>;
    name: string;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

id: string
isActive: boolean
localizedNames?: Record<Locale.ID, string>

This field is excluded from the response when a locale is set

name: string