This interface defines the structure of an Organization object associated with a recent signup.
export interface RecentSignupOrganization {
    id?: string;
    name?: string;
}

Properties

  • id (string, optional): The unique identifier of the organization.
  • name (string, optional): The name of the organization.