Interface IAudit

interface IAudit {
    contentType: string;
    data: {
        createdByUser: string;
        description: string;
        id: string;
        sub: string;
        subType: string;
        tenantId: string;
    };
    eventId: string;
    eventTime: string;
    eventType: string;
    id: string;
    links: {
        Self: {
            Href: string;
        };
        self: {
            href: string;
        };
    };
    source: string;
    tenantId: string;
    userId: string;
}

Properties

contentType: string
data: {
    createdByUser: string;
    description: string;
    id: string;
    sub: string;
    subType: string;
    tenantId: string;
}

Type declaration

  • createdByUser: string
  • description: string
  • id: string
  • sub: string
  • subType: string
  • tenantId: string
eventId: string
eventTime: string
eventType: string
id: string
links: {
    Self: {
        Href: string;
    };
    self: {
        href: string;
    };
}

Type declaration

  • Self: {
        Href: string;
    }
    • Href: string
  • self: {
        href: string;
    }
    • href: string
source: string
tenantId: string
userId: string