Interface UsersRelative

interface UsersRelative {
    birth_date: string;
    id: number;
    name: string;
    type: "parent" | "child" | "grandparent" | "grandchild" | "sibling";
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

birth_date: string

Date of child birthday (format dd.mm.yyyy)

id: number

Relative ID

name: string

Name of relative

type: "parent" | "child" | "grandparent" | "grandchild" | "sibling"

Relative type

Generated using TypeDoc