GMSNavigationTermsAndConditionsOptions
@interface GMSNavigationTermsAndConditionsOptions : NSObject <NSCopying>Options for displaying terms and conditions.
- 
                  
                  DeclarationSwift init(companyName: String)Objective-C - (instancetype)initWithCompanyName:(NSString *)companyName NS_DESIGNATED_INITIALIZER;
- 
                  
                  Unavailable Default init is not available. Please use the designated initializer. DeclarationObjective-C - (nonnull instancetype)init;
- 
                  
                  Name of the company releasing the app and in the agreement with Google to share location data. DeclarationSwift var companyName: String { get set }Objective-C @property (nonatomic, copy) NSString *_Nonnull companyName;
- 
                  
                  Title of the dialog box. If titleis nil, the dialog uses the default title. Note: For custom titles, the caller of this method needs to localize this parameter The default title is localized by the services automatically.DeclarationSwift var title: String? { get set }Objective-C @property (nonatomic, copy, nullable) NSString *title;
- 
                  
                  Indicates if -showTermsAndConditionsDialogIfNeededWithOptions:callback:should display the driver awareness disclaimer only. The default isNOand the disclaimer is shown in addition to the default terms and services provided with the Navigation SDK. Set toYESto indicate that only the driver awareness disclaimer should be shown.If the project must show the Terms and Conditions dialog, setting this variable to YEShas no effect.DeclarationSwift var shouldOnlyShowDriverAwarenessDialog: Bool { get set }Objective-C @property (nonatomic) BOOL shouldOnlyShowDriverAwarenessDialog;
- 
                  
                  Parameters defining the look and feel of the dialog box. If nil, the dialog box uses the default look and feel. DeclarationSwift var uiParams: GMSNavigationTermsDialogUIParams? { get set }Objective-C @property (nonatomic, strong, nullable) GMSNavigationTermsDialogUIParams *uiParams;