Type alias Client<Roles>

Client<Roles>: ClientAttributes<Roles> & {
    id: string;
    type: "clients";
    organization: {
        data: {
            type: "organizations";
            id: string;
        };
    };
}

Type Parameters

  • Roles extends string

Type declaration

  • id: string
  • type: "clients"
  • organization: {
        data: {
            type: "organizations";
            id: string;
        };
    }
    • data: {
          type: "organizations";
          id: string;
      }
      • type: "organizations"
      • id: string

Generated using TypeDoc