Skip to main content
Example
export interface ClientMembers {
  id: string;
  name: string;
  logoUrl: string | null;
  description: string | null;
  metadata: { [key: string]: string } | null;
}

Properties

description
string
id
string
logoUrl
string
metadata
{[key: string]: string; }
name
string