// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_CHROME_BROWSER_SETTINGS_MANAGE_ACCOUNTS_UI_IDENTITY_VIEW_ITEM_H_
#define IOS_CHROME_BROWSER_SETTINGS_MANAGE_ACCOUNTS_UI_IDENTITY_VIEW_ITEM_H_

#import <UIKit/UIKit.h>

class GaiaId;

// Item to exchange identities between the mediator and the view controller.
@interface IdentityViewItem : NSObject

@property(nonatomic, copy) NSString* userEmail;
// The name may be nil if it has not yet been loaded.
@property(nonatomic, copy) NSString* userFullName;
@property(nonatomic, assign) GaiaId gaiaID;
@property(nonatomic, copy) UIImage* avatar;
@property(nonatomic, copy) NSString* accessibilityIdentifier;
@property(nonatomic, assign) BOOL managed;

@end

#endif  // IOS_CHROME_BROWSER_SETTINGS_MANAGE_ACCOUNTS_UI_IDENTITY_VIEW_ITEM_H_
