interface ProfileInfo {
    account_plan: string;
    addons: ProfileAddOns;
    allocation: ProfileLimit;
    info: {
        account: string;
        banner_url: string;
        created_at: Date;
        id: string;
        logo_url: string;
        name: string;
        updated_at: Date;
    };
}

Properties

account_plan: string
allocation: ProfileLimit
info: {
    account: string;
    banner_url: string;
    created_at: Date;
    id: string;
    logo_url: string;
    name: string;
    updated_at: Date;
}

Type declaration

  • account: string
  • banner_url: string
  • created_at: Date
  • id: string
  • logo_url: string
  • name: string
  • updated_at: Date