/* Options: Date: 2025-08-05 02:03:03 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PersonaRequestDto.* //ExcludeTypes: //DefaultImports: */ export enum PersonaState { Inactive = 'Inactive', Active = 'Active', ToBeDeleted = 'ToBeDeleted', } export class Persona { public Id: number; public Name: string; public Description: string; public PhotoUrl: string; public State: PersonaState; public Threshold: number; public CreatedOn?: string; public CreatedByUserId: string; public ModifiedOn?: string; public ModifiedByUserId: string; public ToBeReinitializedAt?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class PersonaListViewModel { public Personаs: IList; public DecAppUrl: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/sitefinity/data-intelligence/persona", "GET") export class PersonaRequestDto implements IReturn { public Filter: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'PersonaRequestDto'; } public getMethod() { return 'GET'; } public createResponse() { return new PersonaListViewModel(); } }