// 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_PRICE_INSIGHTS_UI_PRICE_INSIGHTS_CONSTANTS_H_
#define IOS_CHROME_BROWSER_PRICE_INSIGHTS_UI_PRICE_INSIGHTS_CONSTANTS_H_
#import <Foundation/Foundation.h>
// Accessibility identifier for content stack view.
extern NSString* const kContentStackViewIdentifier;
// Accessibility identifier for the price tracking stack view.
extern NSString* const kPriceTrackingStackViewIdentifier;
// Accessibility identifier for the title label of price tracking.
extern NSString* const kPriceTrackingTitleIdentifier;
// Accessibility identifier for the subtitle label of price tracking.
extern NSString* const kPriceTrackingSubtitleIdentifier;
// Accessibility identifier for the button of price tracking.
extern NSString* const kPriceTrackingButtonIdentifier;
// Accessibility identifier for the buying options stack view.
extern NSString* const kBuyingOptionsStackViewIdentifier;
// Accessibility identifier for the title label of buying options.
extern NSString* const kBuyingOptionsTitleIdentifier;
// Accessibility identifier for the subtitle label of buying options.
extern NSString* const kBuyingOptionsSubtitleIdentifier;
// Accessibility identifier for price history stack view.
extern NSString* const kPriceHistoryStackViewIdentifier;
// Accessibility identifier for the title label of price history.
extern NSString* const kPriceHistoryTitleIdentifier;
// Accessibility identifier for the primary subtitle label of price history.
extern NSString* const kPriceHistoryPrimarySubtitleIdentifier;
// Accessibility identifier for the secondary subtitle label of price history.
extern NSString* const kPriceHistorySecondarySubtitleIdentifier;
// Accessibility identifier for the graph of price history.
extern NSString* const kPriceHistoryGraphIdentifier;
#endif // IOS_CHROME_BROWSER_PRICE_INSIGHTS_UI_PRICE_INSIGHTS_CONSTANTS_H_