/** * Copyright (c) 2025, Salesforce, Inc. * All rights reserved. * For full license text, see the LICENSE file or https://utam.dev/salesforce/license */ import { Driver as _Driver, Element as _Element, Locator as _Locator, BaseUtamElement as _BaseUtamElement, ClickableUtamElement as _ClickableUtamElement, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; /** * Represents the Service Appointment list and allows interacting with or opening Service Appointment records. * generated from JSON dist/sfsmobileapp/record/serviceAppointmentObject.utam.json * @version 2026-03-09T13:56:34.738Z * @author Salesforce */ export default class ServiceAppointmentObject extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); clickCalendarIcon(): Promise; hasCalendarIcon(): Promise; getCalendarIcon(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; openServiceAppointment(label: string): Promise; openFirstServiceAppointment(): Promise; clickServiceAppointmentTitle(): Promise; pullToRefresh(): Promise; }