@openscreen/internal-sdk 2.0.3 → 2.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"index.modern.mjs","sources":["../src/request.ts","../src/request-delete.ts","../src/request-get.ts","../src/request-patch.ts","../src/request-post.ts","../src/resource.ts","../src/sdk.ts","../src/openscreen.ts"],"sourcesContent":["/* eslint-disable no-console, import/no-cycle */\nimport {IOpenscreenSession} from './openscreen-session'\n\nexport interface RequestRouteSegment {\n parm?: string\n routePart: string\n sdkPartName: string\n}\n\nexport class Request {\n session: IOpenscreenSession\n routeSegments?: RequestRouteSegment[]\n\n constructor(session: IOpenscreenSession) {\n this.session = session\n }\n\n async makeUri(pathParameters: any = {}) {\n const cloudConfig = await this.session.getCloudConfig()\n const urlParts: string[] = [cloudConfig.endpoint.replace(/\\/+$/, '')]\n this.routeSegments!.forEach((segment) => {\n urlParts.push(segment.routePart)\n if (segment.parm) {\n const value = pathParameters[segment.parm!]\n if (!value) {\n throw Error(`Openscreen: missing path parameter value for '${segment.parm!}'`)\n }\n urlParts.push(value)\n }\n })\n return urlParts.join('/')\n }\n\n debugRequest(method: string, url: string, queryParameters?: any, body?: any, options?: any) {\n if (this.session.debugRequest) {\n console.debug(`Openscreen REQUEST: ${method.toUpperCase()} ${url}`)\n if (body) console.debug(`Openscreen REQUEST: ${JSON.stringify(body, null, 2)}`)\n if (queryParameters && this.session.debugQuery) {\n console.debug(`Openscreen QUERY: ${JSON.stringify(queryParameters, null, 2)}`)\n }\n if (options && this.session.debugOptions) {\n console.debug(`Openscreen OPTIONS: ${JSON.stringify(options, null, 2)}`)\n }\n }\n }\n\n debugResponse(response: any) {\n if (this.session.debugResponse) {\n console.debug(`Openscreen RESPONSE: ${JSON.stringify(response.data || {}, null, 2)}`)\n }\n }\n\n handleAndDebugErr(err: any): any {\n if (err.response && err.response.data) {\n if (this.session.debugError) {\n console.error(`Openscreen ERROR: ${JSON.stringify(err.response.data, null, 2)}`)\n } else if (this.session.debugResponse) {\n console.error(`Openscreen RESPONSE: ${JSON.stringify(err.response.data, null, 2)}`)\n }\n return err.response.data\n }\n if (this.session.debugError) {\n try {\n console.error(err)\n } catch {\n console.error(`Openscreen: (unable to print error)`)\n }\n }\n return err\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestDelete<PathParameters, QueryParameters, ResponseBody> extends Request {\n async go(pathParameters: PathParameters, queryParameters: QueryParameters, options?: Object): Promise<ResponseBody> {\n try {\n const url = await this.makeUri(pathParameters)\n this.debugRequest('delete', url, queryParameters, null, options)\n await this.session.authorize()\n const axios = await this.session.getAxios()\n const response = await axios.delete(url, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestGet<PathParameters, QueryParameters, ResponseBody> extends Request {\n async go(pathParameters: PathParameters, queryParameters?: QueryParameters, options?: Object): Promise<ResponseBody> {\n try {\n const url = await this.makeUri(pathParameters)\n this.debugRequest('get', url, queryParameters, null, options)\n await this.session.authorize()\n const axios = await this.session.getAxios()\n const response = await axios.get(url, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestPatch<PathParameters, QueryParameters, RequestBody, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters?: QueryParameters,\n body?: RequestBody,\n options?: Object,\n ): Promise<ResponseBody> {\n try {\n const url = await this.makeUri(pathParameters)\n await this.session.authorize()\n this.debugRequest('patch', url, queryParameters, body, options)\n const axios = await this.session.getAxios()\n const response = await axios.patch(url, body, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data! as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestPost<PathParameters, QueryParameters, RequestBody, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters?: QueryParameters,\n body?: RequestBody,\n options?: Object,\n ): Promise<ResponseBody> {\n try {\n const url = await this.makeUri(pathParameters)\n await this.session.authorize()\n this.debugRequest('post', url, queryParameters, body, options)\n const axios = await this.session.getAxios()\n const response = await axios.post(url, body, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data! as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","import {IOpenscreenSession} from './openscreen-session'\n\nexport class Resources {\n protected session: IOpenscreenSession\n protected pathParameters: any\n\n constructor(session: IOpenscreenSession, pathParameters: any) {\n this.session = session\n this.pathParameters = pathParameters\n }\n\n self() {\n return this\n }\n\n getSession(): IOpenscreenSession {\n return this.session\n }\n}\n\nexport class Resource {\n protected session: IOpenscreenSession\n protected pathParameters: any\n protected id?: string\n\n constructor(session: IOpenscreenSession, pathParameters: any) {\n this.session = session\n this.pathParameters = pathParameters\n }\n\n getSession(): IOpenscreenSession {\n return this.session\n }\n}\n","import {RequestRouteSegment} from './request'\nimport {RequestDelete} from './request-delete'\nimport {RequestGet} from './request-get'\nimport {RequestPatch} from './request-patch'\nimport {RequestPost} from './request-post'\nimport {Resource, Resources} from './resource'\n\nexport interface NestedKeyValueObject {\n [key: string]: string | number | boolean | NestedKeyValueObject | string[]\n}\n// ENUMERATIONS\n\nexport enum AccountDomainTypes {\n ENGAGE_MICROSITE = 'ENGAGE_MICROSITE',\n QRCODE = 'QRCODE',\n TRACK_WORKFLOW = 'TRACK_WORKFLOW',\n}\n\nexport enum AccountSortingTypes {\n CREATED_DATE = 'CREATED_DATE',\n STATIC_QR_CODE_COUNT = 'STATIC_QR_CODE_COUNT',\n DYNAMIC_QR_CODE_COUNT = 'DYNAMIC_QR_CODE_COUNT',\n SCAN_COUNT = 'SCAN_COUNT',\n CONTACT_COUNT = 'CONTACT_COUNT',\n PRICE_PLAN = 'PRICE_PLAN',\n LAST_ACTIVITY = 'LAST_ACTIVITY',\n CLIENT_EXEC = 'CLIENT_EXEC',\n ASSET_COUNT = 'ASSET_COUNT',\n SMS_COUNT = 'SMS_COUNT',\n ACCOUNT_STATUS = 'ACCOUNT_STATUS',\n}\n\nexport enum AccountStatus {\n ACTIVE = 'ACTIVE',\n SUSPENDED = 'SUSPENDED',\n CANCELLED = 'CANCELLED',\n}\n\nexport enum AccountType {\n INTERNAL = 'INTERNAL',\n EXTERNAL = 'EXTERNAL',\n}\n\nexport enum AccountUserRole {\n OWNER = 'OWNER',\n ADMINISTRATOR = 'ADMINISTRATOR',\n BILLING_CONTACT = 'BILLING_CONTACT',\n MEMBER = 'MEMBER',\n API_KEY = 'API_KEY',\n INVITATION_DECLINED = 'INVITATION_DECLINED',\n READ_ONLY = 'READ_ONLY',\n}\n\nexport enum AssetByAssetTypeSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n QR_CODE_COUNT = 'QR_CODE_COUNT',\n STATE = 'STATE',\n}\n\nexport enum AssetCreationFileTypes {\n json = 'json',\n csv = 'csv',\n}\n\nexport enum AssetSortingTypes {\n MODIFIED = 'MODIFIED',\n STATE = 'STATE',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n QR_CODE_COUNT = 'QR_CODE_COUNT',\n ASSET_TYPE_NAME = 'ASSET_TYPE_NAME',\n}\n\nexport enum AssetTypeSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n}\n\nexport enum AssetTypeUsabilityState {\n PUBLISHED = 'PUBLISHED',\n DRAFT = 'DRAFT',\n ARCHIVED = 'ARCHIVED',\n}\n\nexport enum AuthMessageId {\n INVALID_API_KEY = 'INVALID_API_KEY',\n INVALID_EMAIL = 'INVALID_EMAIL',\n INVALID_LEGACY_MIGRATION = 'INVALID_LEGACY_MIGRATION',\n INVALID_PASSWORD = 'INVALID_PASSWORD',\n INVALID_SCOPE = 'INVALID_SCOPE',\n INVALID_SECRET = 'INVALID_SECRET',\n INVALID_TOKEN = 'INVALID_TOKEN',\n MIGRATE_FROM_COGNITO = 'MIGRATE_FROM_COGNITO',\n NO_ACCESS_TOKEN = 'NO_ACCESS_TOKEN',\n NO_REFRESH_TOKEN = 'NO_REFRESH_TOKEN',\n RESET_PASSWORD = 'RESET_PASSWORD',\n RESET_SECRET = 'RESET_SECRET',\n SUSPENDED_OR_INACTIVE = 'SUSPENDED_OR_INACTIVE',\n TOKEN_EXPIRED = 'TOKEN_EXPIRED',\n TRY_AGAIN = 'TRY_AGAIN',\n UNABLE_TO_CONFIRM_EMAIL = 'UNABLE_TO_CONFIRM_EMAIL',\n UNCONFIRMED_EMAIL = 'UNCONFIRMED_EMAIL',\n EMAIL_ALREADY_TAKEN = 'EMAIL_ALREADY_TAKEN',\n SSO_USER = 'SSO_USER',\n}\n\nexport enum AuthTokenScope {\n API = 'API',\n SSO = 'SSO',\n CONFIRM_EMAIL = 'CONFIRM_EMAIL',\n NEW_PASSWORD = 'NEW_PASSWORD',\n NO_SESSION = 'NO_SESSION',\n NO_PASSWORD = 'NO_PASSWORD',\n CONFIRMED_NO_PASSWORD = 'CONFIRMED_NO_PASSWORD',\n}\n\nexport enum AuthTypes {\n MICROSOFT = 'MICROSOFT',\n}\n\nexport enum CampaignUseCaseCategory {\n TWO_FACTOR_AUTHENTICATION = 'TWO_FACTOR_AUTHENTICATION',\n MARKETING = 'MARKETING',\n CUSTOMER_CARE = 'CUSTOMER_CARE',\n CHARITY_NONPROFIT = 'CHARITY_NONPROFIT',\n DELIVERY_NOTIFICATIONS = 'DELIVERY_NOTIFICATIONS',\n FRAUD_ALERT_MESSAGING = 'FRAUD_ALERT_MESSAGING',\n EVENTS = 'EVENTS',\n HIGHER_EDUCATION = 'HIGHER_EDUCATION',\n K12 = 'K12',\n POLLING_AND_VOTING_NON_POLITICAL = 'POLLING_AND_VOTING_NON_POLITICAL',\n POLITICAL_ELECTION_CAMPAIGNS = 'POLITICAL_ELECTION_CAMPAIGNS',\n PUBLIC_SERVICE_ANNOUNCEMENT = 'PUBLIC_SERVICE_ANNOUNCEMENT',\n SECURITY_ALERT = 'SECURITY_ALERT',\n ACCOUNT_NOTIFICATIONS = 'ACCOUNT_NOTIFICATIONS',\n}\n\nexport enum ConsentStatus {\n ACCEPTED = 'ACCEPTED',\n DECLINED = 'DECLINED',\n true = 'true',\n false = 'false',\n}\n\nexport enum ConsentType {\n SMS = 'SMS',\n EMAIL = 'EMAIL',\n DATA = 'DATA',\n CUSTOM = 'CUSTOM',\n}\n\nexport enum ContactAssetSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n PHONE = 'PHONE',\n EMAIL = 'EMAIL',\n LAST_SCAN_TIME = 'LAST_SCAN_TIME',\n LAST_SCAN_LOCATION = 'LAST_SCAN_LOCATION',\n SCAN_COUNT = 'SCAN_COUNT',\n}\n\nexport enum ContactSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n ASSET_NAME = 'ASSET_NAME',\n PHONE = 'PHONE',\n EMAIL = 'EMAIL',\n LAST_SCAN_TIME = 'LAST_SCAN_TIME',\n LAST_SCAN_LOCATION = 'LAST_SCAN_LOCATION',\n SCAN_COUNT = 'SCAN_COUNT',\n}\n\nexport enum DomainStatus {\n INITIATED = 'INITIATED',\n VERIFIED = 'VERIFIED',\n CERTIFICATE_REQUESTED = 'CERTIFICATE_REQUESTED',\n CERTIFICATE_VALIDATION_ADDED = 'CERTIFICATE_VALIDATION_ADDED',\n CERTIFICATE_VALIDATED = 'CERTIFICATE_VALIDATED',\n CDN_DISTRIBUTION_ADDED = 'CDN_DISTRIBUTION_ADDED',\n COMPLETED = 'COMPLETED',\n FAILED = 'FAILED',\n}\n\nexport enum EntitySources {\n CARE_API = 'CARE_API',\n}\n\nexport enum FieldType {\n STRING = 'STRING',\n NUMBER = 'NUMBER',\n}\n\nexport enum FilePurpose {\n ASSET_BATCH = 'ASSET_BATCH',\n}\n\nexport enum FileStatus {\n VALIDATING = 'VALIDATING',\n VALID = 'VALID',\n INVALID = 'INVALID',\n NOT_VALIDATED = 'NOT_VALIDATED',\n}\n\nexport enum InternalProductName {\n ENGAGE = 'ENGAGE',\n TRACK = 'TRACK',\n INVENTORY = 'INVENTORY',\n CREATE = 'CREATE',\n}\n\nexport enum InvoiceStatus {\n COMING_UP = 'COMING_UP',\n PAID = 'PAID',\n PAST_DUE = 'PAST_DUE',\n VOID = 'VOID',\n}\n\nexport enum JobStatus {\n IN_PROGRESS = 'IN_PROGRESS',\n COMPLETED = 'COMPLETED',\n TIMEOUT = 'TIMEOUT',\n FAILED = 'FAILED',\n CANCELLED = 'CANCELLED',\n DOWNLOADED = 'DOWNLOADED',\n}\n\nexport enum JobType {\n BATCH_CREATE_BLANK_ITEMS = 'BATCH_CREATE_BLANK_ITEMS',\n BATCH_CREATE_ASSETS = 'BATCH_CREATE_ASSETS',\n VALIDATE_CSV = 'VALIDATE_CSV',\n SELF_QUEUE_BATCH_PRINT = 'SELF_QUEUE_BATCH_PRINT',\n SCAN_EXPORT = 'SCAN_EXPORT',\n ASSET_EXPORT = 'ASSET_EXPORT',\n CONTACT_EXPORT = 'CONTACT_EXPORT',\n TEMPLATED_PRINT = 'TEMPLATED_PRINT',\n CLONE_MICROSITE = 'CLONE_MICROSITE',\n QRCODE_SCANS_EXPORT = 'QRCODE_SCANS_EXPORT',\n PROJECT_EXPORT = 'PROJECT_EXPORT',\n ACCOUNT_EXPORT = 'ACCOUNT_EXPORT',\n WEB_SESSION_EXPORT = 'WEB_SESSION_EXPORT',\n USER_DB_ENTITIES_GENENERATION = 'USER_DB_ENTITIES_GENENERATION',\n USER_DB_ENTITIES_EXPORT = 'USER_DB_ENTITIES_EXPORT',\n UPDATE_MICROSITE_QR_CODE_CUSTOM_DOMAIN = 'UPDATE_MICROSITE_QR_CODE_CUSTOM_DOMAIN',\n UPDATE_MICROSITE_CDN_CUSTOM_DOMAIN = 'UPDATE_MICROSITE_CDN_CUSTOM_DOMAIN',\n}\n\nexport enum Label {\n NONE = 'NONE',\n ASSET_NAME = 'ASSET_NAME',\n CUSTOM = 'CUSTOM',\n COMPANY_NAME = 'COMPANY_NAME',\n LOCATOR_KEY = 'LOCATOR_KEY',\n}\n\nexport enum LocationSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n STATE = 'STATE',\n}\n\nexport enum OpenscreenEmails {\n SALES_EMAIL = 'SALES_EMAIL',\n SUPPORT_EMAIL = 'SUPPORT_EMAIL',\n}\n\nexport enum Permission {\n PLUGIN_CONFIGURATION = 'PLUGIN_CONFIGURATION',\n INDIVIDUAL_ACCOUNT_SETTINGS = 'INDIVIDUAL_ACCOUNT_SETTINGS',\n WORKFLOW_BUILDER = 'WORKFLOW_BUILDER',\n QR_CODE_AND_PRINT_STUDIO = 'QR_CODE_AND_PRINT_STUDIO',\n REPORTING_AND_ANALYTICS = 'REPORTING_AND_ANALYTICS',\n USER_MANAGEMENT = 'USER_MANAGEMENT',\n BILLING = 'BILLING',\n}\n\nexport enum PluginNameTypes {\n ADMIN_PLUGIN = 'ADMIN_PLUGIN',\n REHRIG_VISION = 'REHRIG_VISION',\n HOTWIRE = 'HOTWIRE',\n GOOGLE_SHEET = 'GOOGLE_SHEET',\n CONDITIONAL_REDIRECT = 'CONDITIONAL_REDIRECT',\n GOOGLE_PLACES = 'GOOGLE_PLACES',\n REHRIG_BARRIE_ADDRESS_DYNAMO_DB = 'REHRIG_BARRIE_ADDRESS_DYNAMO_DB',\n GUND = 'GUND',\n KLAVIYO = 'KLAVIYO',\n REHRIG_VISION_TRACK = 'REHRIG_VISION_TRACK',\n}\n\nexport enum PluginStatus {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n SUSPENDED = 'SUSPENDED',\n}\n\nexport enum PricePlanName {\n FREE = 'free',\n PAYASYOUGO = 'payAsYouGo',\n ADVANCED = 'advanced',\n PRO = 'pro',\n ENTERPRISE_CUSTOM = 'enterpriseCustom',\n UNLIMITED = 'unlimited',\n ENGAGE_STARTER_MONTHLY = 'engageStarterMonthly',\n ENGAGE_STARTER_YEARLY = 'engageStarterYearly',\n ENGAGE_PRO_MONTHLY = 'engageProMonthly',\n ENGAGE_PRO_YEARLY = 'engageProYearly',\n ENGAGE_PREMIUM_MONTHLY = 'engagePremiumMonthly',\n ENGAGE_PREMIUM_YEARLY = 'engagePremiumYearly',\n ENGAGE_ENTERPRISE_CUSTOM = 'engageEnterpriseCustom',\n ENGAGE_ADDON = 'engageAddon',\n}\n\nexport enum PricePlanPaymentPeriod {\n MONTHLY = 'monthly',\n ANNUAL = 'annual',\n}\n\nexport enum PricePlanReporting {\n BASIC = 'basic',\n ADVANCED = 'advanced',\n basic = 'basic',\n advance = 'advanced',\n}\n\nexport enum PrintFormat {\n A3 = 'A3',\n A4 = 'A4',\n A5 = 'A5',\n LETTER = 'LETTER',\n LEGAL = 'LEGAL',\n}\n\nexport enum PrintMode {\n SINGLE = 'SINGLE',\n MULTIPLE = 'MULTIPLE',\n}\n\nexport enum PrintOrientation {\n PORTRAIT = 'PORTRAIT',\n LANDSCAPE = 'LANDSCAPE',\n}\n\nexport enum PrintTemplate {\n AVERY_5160 = 'AVERY_5160',\n AVERY_5163 = 'AVERY_5163',\n AVERY_94103 = 'AVERY_94103',\n AVERY_22806 = 'AVERY_22806',\n AVERY_22805 = 'AVERY_22805',\n OL914 = 'OL914',\n OL3012LP = 'OL3012LP',\n OL3012LPCustom = 'OL3012LPCustom',\n CLOUD_TAGS_15 = 'CLOUD_TAGS_15',\n CLOUD_TAGS_20 = 'CLOUD_TAGS_20',\n LUGGAGE_TAGS_SINGLE = 'LUGGAGE_TAGS_SINGLE',\n LUGGAGE_TAGS_5_X_5 = 'LUGGAGE_TAGS_5_X_5',\n CT_8_X_6_GRIPPER = 'CT_8_X_6_GRIPPER',\n MINI_CLOUD_TAGS_4_X_3 = 'MINI_CLOUD_TAGS_4_X_3',\n}\n\nexport enum PrintUnit {\n IN = 'IN',\n CM = 'CM',\n MM = 'MM',\n PT = 'PT',\n}\n\nexport enum ProjectSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n QR_CODE_COUNT = 'QR_CODE_COUNT',\n CONTACT_COUNT = 'CONTACT_COUNT',\n ASSET_COUNT = 'ASSET_COUNT',\n}\n\nexport enum ProjectStatus {\n ACTIVE = 'ACTIVE',\n SUSPENDED = 'SUSPENDED',\n}\n\nexport enum QrCodeCornerDotTypes {\n dot = 'dot',\n square = 'square',\n}\n\nexport enum QrCodeCornerSquareTypes {\n dot = 'dot',\n square = 'square',\n extra_rounded = 'extra-rounded',\n}\n\nexport enum QrCodeDotTypes {\n classy = 'classy',\n classy_rounded = 'classy-rounded',\n dots = 'dots',\n extra_rounded = 'extra-rounded',\n rounded = 'rounded',\n square = 'square',\n}\n\nexport enum QrCodeDynamicRedirectType {\n NO_SCAN_ID = 'NO_SCAN_ID',\n SCAN_ID_IN_PATH_PARAMETER = 'SCAN_ID_IN_PATH_PARAMETER',\n SCAN_ID_IN_QUERY_STRING_PARAMETER = 'SCAN_ID_IN_QUERY_STRING_PARAMETER',\n CUSTOM_QUERY_STRING_PARAMETER = 'CUSTOM_QUERY_STRING_PARAMETER',\n}\n\nexport enum QrCodeErrorCorrectionLevel {\n L = 'L',\n M = 'M',\n Q = 'Q',\n H = 'H',\n}\n\nexport enum QrCodeGradientTypes {\n linear = 'linear',\n radial = 'radial',\n}\n\nexport enum QrCodeIntentType {\n STATIC_REDIRECT = 'STATIC_REDIRECT',\n DYNAMIC_REDIRECT = 'DYNAMIC_REDIRECT',\n DYNAMIC_REDIRECT_TO_APP = 'DYNAMIC_REDIRECT_TO_APP',\n}\n\nexport enum QrCodeLocatorKeyType {\n SHORT_URL = 'SHORT_URL',\n HASHED_ID = 'HASHED_ID',\n SECURE_ID = 'SECURE_ID',\n}\n\nexport enum QrCodeSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n}\n\nexport enum QrCodeStatus {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n SUSPENDED = 'SUSPENDED',\n UNSAFE = 'UNSAFE',\n}\n\nexport enum QrCodeType {\n PNG = 'PNG',\n JPEG = 'JPEG',\n SVG = 'SVG',\n png = 'png',\n jpeg = 'jpeg',\n svg = 'svg',\n}\n\nexport enum QueryConditions {\n EQUALS = 'EQUALS',\n LESS_THAN = 'LESS_THAN',\n LESS_THAN_EQUAL = 'LESS_THAN_EQUAL',\n GREATER_THAN = 'GREATER_THAN',\n GREATER_THAN_EQUAL = 'GREATER_THAN_EQUAL',\n BETWEEN = 'BETWEEN',\n BEGINS_WITH = 'BEGINS_WITH',\n}\n\nexport enum ScanTimelineOptions {\n DAILY = 'DAILY',\n HOURLY = 'HOURLY',\n}\n\nexport enum StickerShape {\n SQUARE = 'SQUARE',\n CIRCLE = 'CIRCLE',\n RECTANGLE = 'RECTANGLE',\n}\n\nexport enum TagActions {\n ACTIVATED = 'ACTIVATED',\n MODIFIED = 'MODIFIED',\n}\n\nexport enum TagStates {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n USER_INFO_COLLECTION = 'USER_INFO_COLLECTION',\n}\n\nexport enum UserCredentialsStatus {\n COMPROMISED = 'COMPROMISED',\n CONFIRMED = 'CONFIRMED',\n LEGACY = 'LEGACY',\n NEW_EMAIL = 'NEW_EMAIL',\n NEW_EMAIL_CONFIRMED = 'NEW_EMAIL_CONFIRMED',\n NEW_PASSWORD = 'NEW_PASSWORD',\n SUSPENDED = 'SUSPENDED',\n UNCONFIRMED = 'UNCONFIRMED',\n CONFIRMED_NO_PASSWORD = 'CONFIRMED_NO_PASSWORD',\n CONFIRMED_SSO = 'CONFIRMED_SSO',\n}\n\nexport enum UserGroups {\n appuser = 'appuser',\n appadmin = 'appadmin',\n}\n\nexport enum UserMediaFileTypes {\n pdf = 'pdf',\n jpg = 'jpg',\n HEIC = 'HEIC',\n heic = 'heic',\n png = 'png',\n mov = 'mov',\n mp4 = 'mp4',\n jpeg = 'jpeg',\n ttf = 'ttf',\n otf = 'otf',\n woff = 'woff',\n woff2 = 'woff2',\n csv = 'csv',\n json = 'json',\n gif = 'gif',\n bmp = 'bmp',\n webp = 'webp',\n svg = 'svg',\n tiff = 'tiff',\n webm = 'webm',\n ogg = 'ogg',\n avi = 'avi',\n mpeg = 'mpeg',\n css = 'css',\n}\n\nexport enum UserMediaSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n FILE_TYPE = 'FILE_TYPE',\n CATEGORY = 'CATEGORY',\n}\n\nexport enum UserSettingsDomain {\n DASHBOARD = 'DASHBOARD',\n}\n\n// APPLICATION ENTITIES\n\nexport interface Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface AccountAuth {\n accountId: string\n clientId: string\n created?: string | Date | number | null\n encryptedClientSecret: string\n modified?: string | Date | number | null\n prompt?: string | null\n tenantId?: string | null\n type: AuthTypes\n}\n\nexport interface AccountByAccountId {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByAccountStatus {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n accountStatus: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface AccountByAssetCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n assetCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByClientExec {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n clientExec: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByCompanyName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n companyName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface AccountByContactCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n contactCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByDynamicQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n modified?: string | Date | number | null\n}\n\nexport interface AccountByLastActivity {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n lastActivity: string | Date | number\n modified?: string | Date | number | null\n}\n\nexport interface AccountByPricePlanName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n pricePlanName: string\n}\n\nexport interface AccountByProductName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n productName: string\n timestamp: string | Date | number\n}\n\nexport interface AccountByScanCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n scanCount: number\n}\n\nexport interface AccountBySmsCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n smsCount: number\n}\n\nexport interface AccountByStaticQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n staticQrCodeCount: number\n}\n\nexport interface AccountByTimestamp {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface AccountByUserCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n userCount: number\n}\n\nexport interface AccountDomain {\n accountId: string\n cnameValue?: string | null\n created?: string | Date | number | null\n customDomain: string\n hostedZoneId?: string | null\n modified?: string | Date | number | null\n nameServers?: Array<any> | null\n projectIds?: Array<any> | null\n status?: DomainStatus\n stepSchedulerId?: string | null\n title?: string | null\n type?: AccountDomainTypes\n}\n\nexport interface AccountDomainByType {\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n customDomain: string\n modified?: string | Date | number | null\n timestamp: string | Date | number\n type: string\n}\n\nexport interface AccountEmailContact {\n accountId: string\n contactId: string\n created?: string | Date | number | null\n email: string\n modified?: string | Date | number | null\n}\n\nexport interface AccountInstalledApp {\n accountId: string\n appAccountId: string\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId?: string | null\n}\n\nexport interface AccountInvitation {\n accountId: string\n companyName?: string | null\n created?: string | Date | number | null\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId: string\n lastName: string\n modified?: string | Date | number | null\n sendersFirstName: string\n sendersLastName: string\n sendersUserId?: string | null\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface AccountInvitationRequestBody {\n email: string\n firstName: string\n lastName: string\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface AccountPhoneContact {\n accountId: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n phone: string\n}\n\nexport interface AccountPlugin {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n isEnabled?: boolean\n modified?: string | Date | number | null\n pluginConfig?: NestedKeyValueObject\n pluginId: string\n}\n\nexport interface AccountPublishedApp {\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n}\n\nexport interface AccountResponse extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface AccountScan {\n accountId: string\n assetId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n scanId: string\n}\n\nexport interface AccountSmsCampaign {\n accountId: string\n campaignInfo?: SmsCampaignRequest | null\n campaignStatus?: string | null\n created?: string | Date | number | null\n errorCode?: string | null\n lastFetchedAt?: string | Date | number | null\n modified?: string | Date | number | null\n rejectionReason?: string | null\n twilioAccountSid: string\n twilioPhoneNumber?: string | null\n twilioPhoneNumberSid?: string | null\n}\n\nexport interface AccountUser {\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n userId: string\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface ApiKey {\n apiKeyId: string\n created?: string | Date | number | null\n description?: string | null\n key: string\n modified?: string | Date | number | null\n name: string\n}\n\nexport interface ApiKeyCredentials {\n algorithm?: string\n apiKeyId: string\n created?: string | Date | number | null\n description?: string | null\n invalidAttemptCount: number\n key: string\n modified?: string | Date | number | null\n name: string\n secret?: string | null\n status: string\n}\n\nexport interface ApiKeySessionResponseBody {\n apiKeyId: string\n expires: string | Date | number\n scope: AuthTokenScope\n}\n\nexport interface App {\n appDetailMedia?: string[] | null\n appId: string\n appName: string\n appPrice: number\n appStoreThumbnail?: string | null\n appWebhook?: string | null\n bannerImage?: string | null\n cardImage?: string | null\n categories?: Array<any> | null\n created?: string | Date | number | null\n description?: string | null\n featured?: boolean\n features?: string | null\n heroImage?: string | null\n isPublished?: boolean\n keywords?: Array<any> | null\n logo?: string | null\n modified?: string | Date | number | null\n ownerAccountId: string\n pricePlanPoints?: Array<any> | null\n tagline?: string | null\n uiUrl: string\n website?: string | null\n}\n\nexport interface AppAccount {\n appAccountId: string\n appId: string\n appName: string\n assetCount: number\n contactCount: number\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n emailCount: number\n lastScanId?: string | null\n mainAccountId: string\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n userCount: number\n webSessionCount?: number | null\n}\n\nexport interface AppBasicDetails {\n appAccountId: string\n appId: string\n appLogo?: string | null\n appName: string\n mainAccountId: string\n}\n\nexport interface AppByName {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AppByTimestamp {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface Asset {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n dynamicQrCodeCount: number\n isValidChildAssets?: boolean | null\n isValidCustomAttributes?: boolean | null\n lastCommittedCustomAttributes?: NestedKeyValueObject | null\n lastGeolocationScanTime?: string | Date | number | null\n lastScanGeolocationCoordinates?: string | null\n lastScanId?: string | null\n lastScanLocationCoordinates?: string | null\n lastScanTime?: string | Date | number | null\n locationId?: string | null\n mediaCount?: number | null\n mediaIds?: Array<any> | null\n modified?: string | Date | number | null\n name: string\n parentAssetId?: string | null\n projectId: string\n qrCodeLinks?: Array<any> | null\n scanCount: number\n state?: string | null\n staticQrCodeCount: number\n thumbnails?: Array<any> | null\n userMedias?: UserMedia[] | null\n webSessionCount?: number | null\n willCreateSession?: boolean | null\n}\n\nexport interface AssetByAssetTypeNameAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByNumberCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue: number\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface AssetByStateAssetTypeName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStateAssetTypeNameAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStateName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStateNumberCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue: number\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state: string\n}\n\nexport interface AssetByStateQrCodeCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeCount: number\n state?: string\n}\n\nexport interface AssetByStateScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n scanCount: number\n state?: string\n}\n\nexport interface AssetByStateStringCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue?: string | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state: string\n}\n\nexport interface AssetByStateTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStringCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue?: string | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface AssetContact {\n assetId: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n type?: string | null\n}\n\nexport interface AssetContactByNumberCustomAttribute {\n _prefix?: string\n assetId: string\n contactId: string\n created?: string | Date | number | null\n indexValue: number\n modified?: string | Date | number | null\n}\n\nexport interface AssetContactByRelationshipType {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n type: string\n}\n\nexport interface AssetContactByStringCustomAttribute {\n _prefix?: string\n assetId: string\n contactId: string\n created?: string | Date | number | null\n indexValue?: string | null\n modified?: string | Date | number | null\n}\n\nexport interface AssetFieldsObject {\n assetTypeId?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name?: string | null\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface AssetGraph {\n accountId: string\n appAccountId?: string | null\n assetGraphId: string\n created?: string | Date | number | null\n direction?: string\n edges?: AssetGraphEdge[] | null\n modified?: string | Date | number | null\n name: string\n nodes: AssetGraphNode[]\n projectId: string\n}\n\nexport interface AssetGraphByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetGraphId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface AssetGraphEdge {\n source: string\n target: string\n}\n\nexport interface AssetGraphNode {\n assetId: string\n}\n\nexport interface AssetHistory {\n _timestamp: string | Date | number\n appAccountId?: string | null\n appId?: string | null\n assetId?: string | null\n assetTypeId?: string | null\n batchId?: string | null\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n dynamicQrCodeCount?: number | null\n expiresAt?: string | Date | number | null\n isValidChildAssets?: boolean | null\n isValidCustomAttributes?: boolean | null\n lastCommittedCustomAttributes?: NestedKeyValueObject | null\n lastGeolocationScanTime?: string | Date | number | null\n lastScanGeolocationCoordinates?: string | null\n lastScanId?: string | null\n lastScanLocationCoordinates?: string | null\n lastScanTime?: string | Date | number | null\n locationId?: string | null\n mediaCount?: number | null\n mediaIds?: Array<any> | null\n modified?: string | Date | number | null\n name?: string | null\n parentAssetId?: string | null\n projectId?: string | null\n qrCodeLinks?: Array<any> | null\n scanCount?: number | null\n state?: string | null\n staticQrCodeCount?: number | null\n thumbnails?: Array<any> | null\n userMedias?: UserMedia[] | null\n webSessionCount?: number | null\n willCreateSession?: boolean | null\n}\n\nexport interface AssetNeighbor {\n created?: string | Date | number | null\n modified?: string | Date | number | null\n source: string\n target: string\n type?: string\n}\n\nexport interface AssetType {\n accountId: string\n appAccountId?: string | null\n appId?: string | null\n assetTypeId: string\n category?: string | null\n childItems?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceCount: number\n instanceProperties?: NestedKeyValueObject | null\n intent?: string | null\n isPreviouslyUsed?: boolean\n managedCount: number\n modified?: string | Date | number | null\n name: string\n staticProperties?: NestedKeyValueObject | null\n usabilityState: AssetTypeUsabilityState\n}\n\nexport interface AssetTypeByLocation {\n assetTypeId: string\n created?: string | Date | number | null\n instanceCount: number\n locationId: string\n locationName?: string | null\n managedCount: number\n modified?: string | Date | number | null\n}\n\nexport interface AssetTypeByStatusName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n assetTypeName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface AssetTypeByStatusTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface BadUrlAttempt {\n accountId: string\n appAccountId?: string | null\n assetContent: NestedKeyValueObject\n assetId: string\n badUrlAttemptId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId?: string | null\n qrCodeId: string\n timestamp: string | Date | number\n url: string\n}\n\nexport interface BadUrlAttemptByTimestamp {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n badUrlAttemptId?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId?: string | null\n qrCodeId?: string | null\n timestamp: string | Date | number\n url: string\n}\n\nexport interface BadUrlAttemptByUrl {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n badUrlAttemptId?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId?: string | null\n qrCodeId?: string | null\n timestamp: string | Date | number\n url: string\n}\n\nexport interface BadUrlUsage {\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n usageCount: number\n}\n\nexport interface BadUrlUsageByCreated {\n _GLOBAL: string\n _created: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface BadUrlUsageByModified {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface BadUrlUsageByUrl {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface BadUrlUsageByUsageCount {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n usageCount: number\n}\n\nexport interface Batch {\n accountId: string\n appAccountId?: string | null\n assetCount: number\n batchId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n lastPrinted?: string | Date | number | null\n modified?: string | Date | number | null\n name?: string | null\n projectId: string\n qrCodeCount: number\n source?: string | null\n tagTypeId?: string | null\n timesPrinted: number\n}\n\nexport interface BatchByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n batchId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n source?: string | null\n timestamp: string | Date | number\n}\n\nexport interface CareUIAccounByIdResponse extends Account {\n accountId: string\n accountStatus?: AccountStatus\n appId?: string | null\n appName?: string | null\n assetCount: number\n campaignStatus?: string | null\n clientExec?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n ownerEmail: string\n ownerFirstName: string\n ownerLastName: string\n ownerMiddleName?: string | null\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n pricePlanName: string\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface CareUIAccountInGetUserResponse {\n accountId: string\n companyName: string\n userRole: string\n}\n\nexport interface CareUIAppResponse {\n createdDate: string | Date | number\n id: string\n name: string\n}\n\nexport interface CareUIClientExecResponse {\n displayName: string\n id: string\n}\n\nexport interface CareUIPortalAccountResponse extends Account {\n accountId: string\n accountStatus?: AccountStatus\n adminUserName: string\n assetCount: number\n campaignStatus?: string | null\n clientExec?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n createdDate: string | Date | number\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastActivity?: string | Date | number | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n pricePlanName: string\n productName: string\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface CareUIPortalUserResponse extends User {\n created?: string | Date | number | null\n createdDate: string | Date | number\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface CareUIUserByIdResponse extends User {\n accounts: CareUIAccountInGetUserResponse[]\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface Contact {\n accountId: string\n appAccountId?: string | null\n appId?: string | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName: string\n isVisible?: boolean | null\n lastCommittedAttributes?: NestedKeyValueObject | null\n lastName: string\n lastScan?: LastScan | null\n lastScanProjectName?: string | null\n lastSms?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName: string\n modified?: string | Date | number | null\n nickname: string\n scanCount: number\n type?: string | null\n}\n\nexport interface ContactAccountCustomConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactAccountDataConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactAccountEmailConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactAccountSmsConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactByNumberCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n contactId: string\n created?: string | Date | number | null\n indexValue: number\n modified?: string | Date | number | null\n}\n\nexport interface ContactByStringCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n contactId: string\n created?: string | Date | number | null\n indexValue?: string | null\n modified?: string | Date | number | null\n}\n\nexport interface ContactConsent {\n accountId?: string | null\n accountName?: string | null\n consentStatus?: ConsentStatus | null\n consentType?: ConsentType | null\n consented: boolean\n consentedAt: string | Date | number\n contactId?: string | null\n customAttributes?: NestedKeyValueObject | null\n projectId?: string | null\n projectName?: string | null\n url?: string | null\n urls?: string[] | null\n}\n\nexport interface ContactHistory {\n _timestamp: string | Date | number\n accountId?: string | null\n appAccountId?: string | null\n appId?: string | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n contactId?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n expiresAt?: string | Date | number | null\n firstName?: string | null\n isVisible?: boolean | null\n lastCommittedAttributes?: NestedKeyValueObject | null\n lastName?: string | null\n lastScan?: LastScan | null\n lastScanProjectName?: string | null\n lastSms?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n modified?: string | Date | number | null\n nickname?: string | null\n scanCount?: number | null\n type?: string | null\n}\n\nexport interface ContactInvite {\n accountId: string\n appInviteUrl?: string | null\n companyName?: string | null\n created?: string | Date | number | null\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId: string\n invitedByUserId: string\n invitedByUserName?: string | null\n isConsumed?: boolean\n lastName: string\n modified?: string | Date | number | null\n projectId: string\n refreshCount: number\n userRole?: AccountUserRole | null\n}\n\nexport interface ContactMailingAddress {\n address?: string | null\n city?: string | null\n country?: string | null\n postalOrZip?: string | null\n provinceOrState?: string | null\n}\n\nexport interface ContactProjectCustomConsent {\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactProjectDataConsent {\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactProjectEmailConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactProjectSmsConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactUser {\n accountId: string\n companyName?: string | null\n contactId: string\n created?: string | Date | number | null\n email: string\n firstName?: string | null\n invalidAttemptCount: number\n lastName?: string | null\n modified?: string | Date | number | null\n password?: string | null\n revokedAt?: string | Date | number | null\n status?: UserCredentialsStatus\n userRole?: AccountUserRole | null\n}\n\nexport interface CreditCard {\n brand: string\n country: string\n expMonth: number\n expYear: number\n last4: string\n postalCode: string\n}\n\nexport interface CustomAttribute {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n customAttributeName: string\n fieldType: FieldType\n mappedCAName?: string | null\n modified?: string | Date | number | null\n}\n\nexport interface DomainMappedQRLocatorKey {\n accountId: string\n created?: string | Date | number | null\n customDomain: string\n locatorKey: string\n modified?: string | Date | number | null\n qrCodeId: string\n serializedLocatorKey: string\n}\n\nexport interface EmailInvitation {\n accountId: string\n created?: string | Date | number | null\n email: string\n expiresAt?: string | Date | number | null\n invitationId: string\n modified?: string | Date | number | null\n}\n\nexport interface File {\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expires?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileId: string\n fileName?: string | null\n filePurpose?: FilePurpose | null\n fileType?: string | null\n internalUrl?: string | null\n isTemporary?: boolean\n length?: number | null\n modified?: string | Date | number | null\n projectId?: string | null\n s3Key?: string | null\n size?: number | null\n state?: FileStatus | null\n url?: string | null\n}\n\nexport interface InternalAccountByAccountId {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByAccountStatus {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n accountStatus: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByAssetCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n assetCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByClientExec {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n clientExec: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByCompanyName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n companyName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByContactCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n contactCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByDynamicQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByLastActivity {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n lastActivity: string | Date | number\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByPricePlanName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n pricePlanName: string\n}\n\nexport interface InternalAccountByProductName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n productName: string\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByScanCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n scanCount: number\n}\n\nexport interface InternalAccountBySmsCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n smsCount: number\n}\n\nexport interface InternalAccountByStaticQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n staticQrCodeCount: number\n}\n\nexport interface InternalAccountByTimestamp {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByUserCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n userCount: number\n}\n\nexport interface Invoice {\n amount: number\n downloadUrl?: string | null\n dueDate?: string | null\n id: string\n name: string\n paymentMethod?: CreditCard | null\n status?: InvoiceStatus\n}\n\nexport interface Job {\n accountId: string\n appAccountId?: string | null\n callbackUrl?: string | null\n childJobIds?: Array<any> | null\n created?: string | Date | number | null\n errorMessage?: NestedKeyValueObject | null\n expires?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileExpiry?: string | Date | number | null\n fileName?: string | null\n jobId: string\n modified?: string | Date | number | null\n name?: string | null\n outputUrl?: string | null\n outputUrls?: Array<any>\n parentJobId?: string | null\n progress?: number | null\n projectId?: string | null\n source?: string | null\n status?: JobStatus\n type: JobType\n}\n\nexport interface JobByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n jobId: string\n modified?: string | Date | number | null\n projectId?: string | null\n source?: string | null\n timestamp: string | Date | number\n}\n\nexport interface LastScan {\n assetId: string\n assetName: string\n browserName?: string | null\n browserVersion?: string | null\n cpuArchitecture?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n deviceModel?: string | null\n deviceType?: string | null\n deviceVendor?: string | null\n engineName?: string | null\n engineVersion?: string | null\n geolocationCityName?: string | null\n geolocationCountryCode?: string | null\n geolocationCountryName?: string | null\n geolocationLatitude?: string | null\n geolocationLongitude?: string | null\n geolocationPostalCode?: string | null\n geolocationRegionCode?: string | null\n geolocationRegionName?: string | null\n ipAddress?: string | null\n locationCityName?: string | null\n locationCountryCode?: string | null\n locationCountryName?: string | null\n locationLatitude?: string | null\n locationLongitude?: string | null\n locationPostalCode?: string | null\n locationRegionCode?: string | null\n locationRegionName?: string | null\n locationTimeZone?: string | null\n modified?: string | Date | number | null\n osName?: string | null\n osVersion?: string | null\n projectId: string\n qrCodeId?: string | null\n scanId: string\n scanTime: string | Date | number\n sessionId?: string | null\n userAgent?: string | null\n}\n\nexport interface Location {\n accountId: string\n address?: string | null\n appAccountId?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n isPreviouslyUsed?: boolean\n locationId: string\n modified?: string | Date | number | null\n name: string\n state?: string | null\n}\n\nexport interface LocationByStateName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface LocationByStateTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface LocationByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface MostScannedAssetResponse {\n assetId?: string | null\n lastScanDate?: string | Date | number | null\n name: string\n projectId?: string | null\n todaysScansCount?: number | null\n totalScansCount?: number | null\n weeklyScansCount?: number | null\n}\n\nexport interface MultipartUploadPart {\n ETag?: string | null\n PartNumber?: number\n}\n\nexport interface NestedAsset {\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name: string\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface NestedContact {\n asset?: NestedAsset | null\n assetId?: string | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface NestedQrCode {\n customQueryStringParameterName?: string\n dynamicRedirectType?: QrCodeDynamicRedirectType\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKeyType?: QrCodeLocatorKeyType\n serializedLocatorKey?: string | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface NestedTypedAsset {\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name?: string | null\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n}\n\nexport interface NewAppByName {\n _GLOBAL: string\n _prefix?: string\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAppByTimestamp {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetByAssetType {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetByQrCodeCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeCount: number\n}\n\nexport interface NewAssetByScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n scanCount: number\n}\n\nexport interface NewAssetByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetTypeByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n assetTypeName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface NewAssetTypeByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface NewLocationByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface NewProjectByAssetCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface NewProjectByContactCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n contactCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface NewProjectByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n projectName: string\n timestamp: string | Date | number\n}\n\nexport interface NewProjectByQrCodeCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeCount: number\n}\n\nexport interface NewProjectByScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanCount: number\n}\n\nexport interface NewProjectByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewPublishedAppByName {\n _GLOBAL: string\n _prefix?: string\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewPublishedAppByTimestamp {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeByAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n batchId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeByScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n scanCount: number\n}\n\nexport interface NewQrCodeByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeLogoByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n qrCodeLogoId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeStylingTemplateByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n stylingTemplateId: string\n stylingTemplateName: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeStylingTemplateByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n stylingTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface NewScanByAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n contactId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n sessionId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface NewScanByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n contactId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n sessionId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface PatchApp {\n appDetailMedia?: string[] | null\n appPrice?: number | null\n appStoreThumbnail?: string | null\n appWebhook?: string | null\n bannerImage?: string | null\n cardImage?: string | null\n categories?: Array<any> | null\n created?: string | Date | number | null\n description?: string | null\n featured?: boolean | null\n features?: string | null\n heroImage?: string | null\n isPublished?: boolean | null\n keywords?: Array<any> | null\n logo?: string | null\n modified?: string | Date | number | null\n pricePlanPoints?: Array<any> | null\n tagline?: string | null\n uiUrl?: string | null\n website?: string | null\n}\n\nexport interface PhoneSession {\n contactId: string\n contactPhone: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n modified?: string | Date | number | null\n smsId: string\n twilioPhone: string\n}\n\nexport interface Plugin {\n appId: string\n created?: string | Date | number | null\n icon: string\n installCount: number\n modified?: string | Date | number | null\n name: string\n pluginId: string\n status?: PluginStatus\n version?: number\n}\n\nexport interface PluginByModified {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n pluginId: string\n timestamp: string | Date | number\n}\n\nexport interface PluginByName {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n pluginId: string\n timestamp: string | Date | number\n}\n\nexport interface PricePlan {\n annualPrice: number\n assets: number\n contacts: number\n created?: string | Date | number | null\n dataExport: boolean\n downgradeDate?: string | Date | number | null\n emails: number\n freeEmailPerMonth?: number | null\n freeSmsPerMonth?: number | null\n mms: number\n modified?: string | Date | number | null\n monthlyPrice: number\n name: string\n nextPricePlanName?: string | null\n paymentPeriod?: string | null\n pricePerAsset: number\n pricePerContact: number\n pricePerEmail: number\n pricePerSMS: number\n pricePlanId: string\n projects: number\n qrCodes: number\n reporting?: PricePlanReporting\n roleBasedManagement: boolean\n sms: number\n stripeCustomerId: string\n stripeSubscriptionId: string\n totalScans: number\n users: number\n visibleContacts?: number | null\n}\n\nexport interface PricePlanPeriod {\n assetsLimit?: number | null\n assetsTotal: number\n contactsLimit?: number | null\n contactsTotal: number\n created?: string | Date | number | null\n emailAmountCharged?: number | null\n emailsLimit?: number | null\n emailsSentThisPeriod?: number | null\n emailsTotal: number\n freeEmailPerMonth?: number | null\n freeSmsPerMonth?: number | null\n invoiceId?: string | null\n mmsAmountCharged?: number | null\n mmsLimit?: number | null\n mmsSentThisPeriod?: number | null\n mmsTotal: number\n modified?: string | Date | number | null\n period: string | Date | number\n periodEndDate: string | Date | number\n pricePlanId: string\n projectsLimit?: number | null\n projectsTotal: number\n qrCodesLimit?: number | null\n qrCodesTotal: number\n qrScansLimit?: number | null\n scansUsedTotal: number\n smsAmountCharged?: number | null\n smsLimit?: number | null\n smsSentThisPeriod?: number | null\n smsTotal: number\n status?: string | null\n usersLimit?: number | null\n usersTotal: number\n visibleContacts?: number | null\n}\n\nexport interface PrintJob {\n accountId: string\n appAccountId?: string | null\n assetIds?: Array<any> | null\n callbackUrl?: string | null\n created?: string | Date | number | null\n createdBy?: string | null\n errorMessage?: NestedKeyValueObject | null\n fileExpiry?: string | Date | number | null\n imageOptions?: QrCodeImageOptions | null\n lastPrintedAt?: string | Date | number | null\n modified?: string | Date | number | null\n name?: string\n numberOfQrCodes?: number | null\n outputUrl?: string | null\n outputUrls?: Array<any>\n parentJobId?: string | null\n printJobId: string\n printOptions?: PrintOptions | null\n printPageTemplateName?: string | null\n printStickerTemplateName?: string | null\n progress?: number | null\n projectId?: string | null\n serializedFabric?: NestedKeyValueObject | null\n sortField?: QrCodeSortingTypes | null\n source?: string | null\n status?: JobStatus\n stylingTemplateId?: string | null\n type?: JobType\n}\n\nexport interface PrintOptions {\n bleed?: boolean | null\n bottomCaptionLabel?: Label\n bottomCaptionLabelHorizontalOffset?: number | null\n bottomCaptionLabelVerticalOffset?: number | null\n bottomLabel?: Label\n customBottomCaptionLabel?: string | null\n customBottomLabel?: string | null\n customMaxLength?: number | null\n customMiddleLabel?: string | null\n customTopCaptionLabel?: string | null\n customTopLabel?: string | null\n fontColor?: string | null\n fontFamily?: string | null\n format?: PrintFormat | null\n horizontalMargin?: number | null\n horizontalOffset?: number | null\n horizontalPadding?: number | null\n isMiniBatch?: boolean | null\n largeFontSize?: number | null\n maxLength?: number | null\n middleLabel?: Label\n numberOfColumns?: number | null\n numberOfRows?: number | null\n orientation?: PrintOrientation\n pageSize?: Array<any> | null\n prefixLocatorKey?: boolean | null\n printMode?: PrintMode\n printPageTemplateId?: string | null\n printStickerTemplateId?: string | null\n printTemplate?: PrintTemplate | null\n qrCodeHorizontalOffset?: number | null\n qrCodeSize?: number | null\n qrCodeVerticalOffset?: number | null\n quantityPerQr?: number | null\n smallFontSize?: number | null\n stickerBackground?: string | null\n stickerShape?: StickerShape | null\n stickerSize?: Array<any> | null\n topCaptionLabel?: Label | null\n topCaptionLabelHorizontalOffset?: number | null\n topCaptionLabelVerticalOffset?: number | null\n topLabel?: Label\n topLabelMaxLength?: number | null\n topMarginBackground?: string | null\n unit?: PrintUnit\n verticalMargin?: number | null\n verticalOffset?: number | null\n verticalPadding?: number | null\n}\n\nexport interface PrintPageTemplate {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n createdBy: string\n format?: PrintFormat | null\n horizontalMargin: number\n horizontalPadding: number\n isDeleted?: boolean | null\n modified?: string | Date | number | null\n name: string\n numberOfColumns: number\n numberOfRows: number\n orientation?: PrintOrientation | null\n pageSize: Array<any>\n printMode?: PrintMode | null\n printPageTemplateId: string\n printTemplate?: PrintTemplate | null\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit?: PrintUnit\n verticalMargin: number\n verticalPadding: number\n}\n\nexport interface PrintPageTemplateByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n printPageTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface PrintPageTemplateByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n printPageTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface PrintStickerTemplate {\n accountId: string\n appAccountId?: string | null\n bleed?: boolean | null\n created?: string | Date | number | null\n createdBy: string\n isDeleted?: boolean | null\n lastUsedAt?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n previewImage?: string | null\n printStickerTemplateId: string\n serializedFabric: NestedKeyValueObject\n stickerShape?: StickerShape\n stickerSize?: Array<any>\n unit?: PrintUnit\n}\n\nexport interface PrintStickerTemplateByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n printStickerTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface PrintStickerTemplateByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n printStickerTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface Project {\n accountId: string\n appAccountId?: string | null\n appId?: string | null\n assetCount: number\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customDomain?: string | null\n description?: string | null\n dynamicQrCodeCount: number\n lastScanId?: string | null\n mediaCount?: number | null\n micrositeCustomDomain?: string | null\n modified?: string | Date | number | null\n name: string\n projectId: string\n scanCount: number\n staticQrCodeCount: number\n status?: ProjectStatus\n webSessionCount?: number | null\n workflowCustomDomain?: string | null\n}\n\nexport interface ProjectAccount {\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectContact {\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectContactByNumberCustomAttribute {\n _prefix?: string\n contactId: string\n created?: string | Date | number | null\n indexValue: number\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectContactByStringCustomAttribute {\n _prefix?: string\n contactId: string\n created?: string | Date | number | null\n indexValue?: string | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectDomain {\n created?: string | Date | number | null\n customDomain: string\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectEmailContact {\n contactId: string\n created?: string | Date | number | null\n email: string\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectPhoneContact {\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n phone: string\n projectId: string\n}\n\nexport interface ProjectScan {\n assetId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n}\n\nexport interface PublishedAppByName {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface PublishedAppByTimestamp {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface QrCode {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n customDomain?: string | null\n customQueryStringParameterName?: string\n dynamicRedirectType?: QrCodeDynamicRedirectType\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKey: string\n locatorKeyType?: QrCodeLocatorKeyType\n modified?: string | Date | number | null\n name: string\n projectId?: string | null\n qrCodeId: string\n qrDomain?: string | null\n scanCount: number\n serializedLocatorKey?: string | null\n status?: QrCodeStatus\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface QrCodeByIntent {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n intent: string\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n timestamp: string | Date | number\n}\n\nexport interface QrCodeImage {\n data: string\n options?: QrCodeImageOptions\n}\n\nexport interface QrCodeImageOptions {\n background?: string\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel\n foreground?: string\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number\n margin?: number\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number\n version?: number | null\n width?: number\n}\n\nexport interface QrCodeImageOptionsNoDefaults {\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n version?: number | null\n width?: number | null\n}\n\nexport interface QrCodeLink {\n created?: string | Date | number | null\n modified?: string | Date | number | null\n qrCodeId: string\n qrCodeLink: string\n}\n\nexport interface QrCodeLocator {\n created?: string | Date | number | null\n locatorKey: string\n modified?: string | Date | number | null\n qrCodeId: string\n}\n\nexport interface QrCodeLogo {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n createdBy: string\n hidden?: boolean\n lastModifiedBy: string\n modified?: string | Date | number | null\n qrCodeLogoId: string\n s3Key: string\n url: string\n}\n\nexport interface QrCodeStylingTemplate {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n createdBy: string\n hidden?: boolean | null\n imageOptions?: QrCodeImageOptions\n lastModifiedBy: string\n modified?: string | Date | number | null\n name: string\n projectId?: string | null\n qrCodeLogo?: QrCodeLogo | null\n stylingTemplateId: string\n}\n\nexport interface RequestApp {\n appDetailMedia?: string[] | null\n appName: string\n appPrice: number\n appStoreThumbnail?: string | null\n appWebhook?: string | null\n bannerImage?: string | null\n cardImage?: string | null\n categories?: Array<any> | null\n created?: string | Date | number | null\n description?: string | null\n featured: boolean\n features?: string | null\n heroImage?: string | null\n isPublished: boolean\n keywords?: Array<any> | null\n logo?: string | null\n modified?: string | Date | number | null\n pricePlanPoints?: Array<any> | null\n tagline?: string | null\n uiUrl: string\n website?: string | null\n}\n\nexport interface RequestSessionAction {\n actionId?: string | null\n actionType?: string | null\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n name?: string | null\n scanId?: string | null\n tags?: Array<any> | null\n timestamp?: string | Date | number | null\n willUpdateSession?: boolean\n}\n\nexport interface ReservedMappedQrLocatorKey {\n _prefix?: string\n created?: string | Date | number | null\n customDomain: string\n isSingle?: boolean\n isStart: boolean\n locatorKeyNumber: number\n modified?: string | Date | number | null\n pairLocatorKeyNumber: number\n prefix: string\n}\n\nexport interface ResponseAccountPlugin {\n accountId: string\n appAccountId?: string | null\n icon: string\n isEnabled?: boolean\n name: string\n pluginConfig?: NestedKeyValueObject\n pluginId: string\n}\n\nexport interface ResponseAsset {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n assetTypeId?: string | null\n assetTypeName?: string | null\n batchId?: string | null\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n customDomain?: string | null\n description?: string | null\n dynamicQrCodeCount: number\n isValidChildAssets?: boolean | null\n isValidCustomAttributes?: boolean | null\n lastGeolocationScanTime?: string | Date | number | null\n lastScan?: LastScan | null\n lastScanGeolocationCoordinates?: string | null\n lastScanId?: string | null\n lastScanLocationCoordinates?: string | null\n lastScanTime?: string | Date | number | null\n locationId?: string | null\n mediaIds?: Array<any>\n modified?: string | Date | number | null\n name: string\n parentAssetId?: string | null\n projectId: string\n projectName?: string | null\n qrCodes?: ResponseQrCode[] | null\n scanCount: number\n state?: string | null\n staticQrCodeCount: number\n thumbnails?: Array<any> | null\n userMedias?: UserMedia[] | null\n willCreateSession?: boolean | null\n}\n\nexport interface ResponseAssetGraph extends AssetGraph {\n accountId: string\n appAccountId?: string | null\n assetGraphId: string\n created?: string | Date | number | null\n direction?: string\n edges?: AssetGraphEdge[] | null\n modified?: string | Date | number | null\n name: string\n nodes: ResponseAssetGraphNode[]\n projectId: string\n}\n\nexport interface ResponseAssetGraphNode extends AssetGraphNode {\n assetId: string\n name?: string | null\n}\n\nexport interface ResponseBodyUser {\n created: string | Date | number\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId?: string | null\n lastName: string\n middleName: string\n userId?: string | null\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface ResponseQrCode {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n created?: string | Date | number | null\n customDomain?: string | null\n dynamicRedirectType?: QrCodeDynamicRedirectType\n image: QrCodeImage\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKey: string\n locatorKeyType?: QrCodeLocatorKeyType\n modified?: string | Date | number | null\n name?: string | null\n projectId?: string | null\n qrCodeId: string\n qrCodeLinks?: Array<any> | null\n scanCount: number\n serializedLocatorKey?: string | null\n status?: QrCodeStatus\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface ResponseSession {\n accountId?: string | null\n appAccountId?: string | null\n assetId?: string | null\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n endTime?: string | Date | number | null\n lastActionId?: string | Date | number | null\n lastScanId?: string | null\n lastSessionAction?: SessionAction | null\n modified?: string | Date | number | null\n newTags?: Array<any> | null\n projectId?: string | null\n qrCodeId?: string | null\n sessionActions?: SessionAction[] | null\n sessionId?: string | null\n tagCounter?: number | null\n tags?: Array<any> | null\n}\n\nexport interface S3Image {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n imageId: string\n internalUrl: string\n modified?: string | Date | number | null\n s3Key: string\n url: string\n}\n\nexport interface Scan {\n assetId: string\n assetName: string\n browserName?: string | null\n browserVersion?: string | null\n cpuArchitecture?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n deviceModel?: string | null\n deviceType?: string | null\n deviceVendor?: string | null\n engineName?: string | null\n engineVersion?: string | null\n geolocationCityName?: string | null\n geolocationCountryCode?: string | null\n geolocationCountryName?: string | null\n geolocationLatitude?: string | null\n geolocationLongitude?: string | null\n geolocationPostalCode?: string | null\n geolocationRegionCode?: string | null\n geolocationRegionName?: string | null\n ipAddress?: string | null\n locationCityName?: string | null\n locationCountryCode?: string | null\n locationCountryName?: string | null\n locationLatitude?: string | null\n locationLongitude?: string | null\n locationPostalCode?: string | null\n locationRegionCode?: string | null\n locationRegionName?: string | null\n locationTimeZone?: string | null\n modified?: string | Date | number | null\n osName?: string | null\n osVersion?: string | null\n projectId: string\n qrCodeId?: string | null\n scanId: string\n scanTime: string | Date | number\n sessionId?: string | null\n userAgent?: string | null\n}\n\nexport interface ScanContact {\n assetId: string\n assetName: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n}\n\nexport interface SessionAction {\n accountId: string\n actionId: string\n actionType?: string | null\n appAccountId?: string | null\n assetId: string\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n name?: string | null\n projectId: string\n qrCodeId: string\n scanId?: string | null\n sessionId: string\n tags?: Array<any> | null\n}\n\nexport interface SessionActionByActionType {\n _prefix?: string\n accountId: string\n actionId: string\n actionType?: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface SessionActionByCategory {\n _prefix?: string\n accountId: string\n actionId: string\n appAccountId?: string | null\n assetId?: string | null\n category?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface SessionActionByName {\n _prefix?: string\n accountId: string\n actionId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name?: string\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface SessionActionByTimestamp {\n _prefix?: string\n accountId: string\n actionId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface Sms {\n body: string\n contactId: string\n created?: string | Date | number | null\n delivered?: boolean | null\n deliveredAt?: string | Date | number | null\n from: string\n inbound: boolean\n modified?: string | Date | number | null\n price?: number | null\n priceUnit: string\n projectId: string\n responses?: SmsResponse[] | null\n smsId: string\n smsTemplateName?: string | null\n status?: string | null\n to: string\n}\n\nexport interface SmsCampaignRequest {\n businessCity: string\n businessContactEmail: string\n businessContactFirstName: string\n businessContactLastName: string\n businessContactPhone: string\n businessCountry?: string\n businessName: string\n businessPostalCode: string\n businessStateProvinceRegion: string\n businessStreetAddress2?: string | null\n businessStreetAddress: string\n businessWebsite: string\n messageVolume?: string\n productionMessageSample: string\n useCaseCategories: CampaignUseCaseCategory[]\n useCaseSummary: string\n}\n\nexport interface SmsResponse {\n body: string\n contactPhone: string\n smsId: string\n twilioPhone: string\n}\n\nexport interface SmsTemplate {\n body?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n responseUrl?: string | null\n smsTemplateName: string\n statusUrl?: string | null\n}\n\nexport interface StepScheduler {\n accountId: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n modified?: string | Date | number | null\n retryCount: number\n secondsInterval: number\n stepSchedulerId: string\n targetEntityType: string\n targetPkSk: string\n}\n\nexport interface TagCreationAccount {\n _GLOBAL?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n productLine: string\n}\n\nexport interface TagType {\n accountId: string\n commonProperties?: NestedKeyValueObject | null\n created?: string | Date | number | null\n imageOptions?: QrCodeImageOptions | null\n incrementor?: Array<any>\n intent: string\n isAskingForGPS?: boolean\n isUsingPrefixValues?: boolean\n leadingCharacter: string\n modified?: string | Date | number | null\n name: string\n packSize: number\n prefixValues?: Array<any>\n printOptions: NestedKeyValueObject\n startingState?: TagStates\n stylingTemplateId?: string | null\n tagTypeId: string\n}\n\nexport interface TagTypeByLeadingChar {\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n leadingCharacter: string\n modified?: string | Date | number | null\n tagTypeId: string\n timestamp: string | Date | number\n}\n\nexport interface TagTypeByName {\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n tagTypeId: string\n}\n\nexport interface TemporaryCode {\n accountId?: string | null\n appAccountId?: string | null\n codeId: string\n codeType?: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n expires?: string | Date | number | null\n expiresAt?: string | Date | number | null\n modified?: string | Date | number | null\n phoneCode?: string | null\n phoneNumber?: string | null\n status?: string\n}\n\nexport interface URLSafety {\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n isBlacklisted?: boolean\n isThreat?: boolean\n modified?: string | Date | number | null\n threatTypes?: Array<any> | null\n timesChecked: number\n url: string\n}\n\nexport interface URLSafetyByCreated {\n _GLOBAL: string\n _created: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface URLSafetyByModified {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface URLSafetyByTimesChecked {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timesChecked: number\n url: string\n}\n\nexport interface URLSafetyByUrl {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface User {\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface UserByEmail {\n _GLOBAL: string\n _prefix?: string\n created?: string | Date | number | null\n email: string\n modified?: string | Date | number | null\n userId: string\n}\n\nexport interface UserByTimestamp {\n _GLOBAL: string\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n userId: string\n}\n\nexport interface UserMedia {\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n category?: string | null\n containsVirus?: boolean | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileType: string\n lastScannedAt?: string | Date | number | null\n mediaId: string\n modified?: string | Date | number | null\n name?: string | null\n projectId?: string | null\n scanId?: string | null\n size?: number | null\n url?: string | null\n}\n\nexport interface UserMediaByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n mediaId: string\n modified?: string | Date | number | null\n name?: string\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserMediaByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n mediaId: string\n modified?: string | Date | number | null\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserMediaByTypeName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileType: string\n mediaId: string\n modified?: string | Date | number | null\n name?: string\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserMediaByTypeTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileType?: string\n mediaId: string\n modified?: string | Date | number | null\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserRole {\n _GLOBAL: string\n created?: string | Date | number | null\n isApiKey?: boolean\n modified?: string | Date | number | null\n name: string\n permissions?: Permission[]\n roleId: string\n}\n\nexport interface UserSession {\n created?: string | Date | number | null\n email: string\n expiresAt: string | Date | number\n modified?: string | Date | number | null\n timestamp: string | Date | number\n token?: string | null\n type: string\n}\n\nexport interface UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface UserSettings {\n created?: string | Date | number | null\n lastSelectedAccountId?: string | null\n modified?: string | Date | number | null\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface WebSession {\n accountId: string\n appAccountId?: string | null\n assetId: string\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n endTime?: string | Date | number | null\n lastActionId?: string | Date | number | null\n lastScanId?: string | null\n modified?: string | Date | number | null\n newTags?: Array<any> | null\n projectId: string\n qrCodeId: string\n sessionId: string\n tagCounter: number\n tags?: Array<any> | null\n}\n\nexport interface WebSessionByCategory {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n category?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface WebSessionByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\n// HANDLER INTERFACE TYPES\n\nexport interface GetAccountAccessDataPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface GetAccountAccessDataResponseBody {\n userRole: string\n}\n\nexport interface CheckUrlSafetyByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CheckUrlSafetyByAccountIdRequestBody {\n ignoreBlackList?: boolean\n qrCodeId?: string | null\n urls: Array<any>\n}\n\nexport interface CheckUrlSafetyByAccountIdResponseBody {\n isSafe: boolean\n urlSafeties: URLSafety[]\n}\n\nexport interface CreateApiKeyByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateApiKeyByAccountIdRequestBody {\n description?: string | null\n name?: string | null\n}\n\nexport interface CreateApiKeyByAccountIdResponseBody {\n apiKeyId: string\n description?: string | null\n key: string\n name: string\n secret: string\n status: string\n}\n\nexport interface CreateAppPathParameters {\n accountId: string\n}\n\nexport interface CreateAppRequestBody {\n app: RequestApp\n}\n\nexport interface CreateAppResponseBody {\n app: App\n}\n\nexport interface CreateAssetTypeByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateAssetTypeByAccountIdRequestBody {\n category?: string | null\n childItems?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceProperties?: NestedKeyValueObject | null\n intent?: string | null\n name: string\n staticProperties?: NestedKeyValueObject | null\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface CreateAssetTypeByAccountIdResponseBody {\n accountId: string\n assetType: AssetType\n}\n\nexport interface CreateCustomDomainByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateCustomDomainByAccountIdRequestBody {\n customDomain: string\n projectId?: string | null\n title?: string | null\n type?: AccountDomainTypes | null\n}\n\nexport interface CreateCustomDomainByAccountIdResponseBody {\n accountDomain: AccountDomain\n projectDomain?: ProjectDomain | null\n}\n\nexport interface CreateImageUploadPresignedUrlPathParameters {\n accountId: string\n}\n\nexport interface CreateImageUploadPresignedUrlRequestBody {\n imageContentType: string\n}\n\nexport interface CreateImageUploadPresignedUrlResponseBody {\n image: S3Image\n presignedUrl: string\n}\n\nexport interface CreateInvitationByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateInvitationByAccountIdRequestBody extends AccountInvitationRequestBody {\n email: string\n firstName: string\n lastName: string\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface CreateInvitationByAccountIdResponseBody {\n accountInvitation: AccountInvitation\n emailInvitation: EmailInvitation\n}\n\nexport interface CreateInvitationsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateInvitationsByAccountIdRequestBody {\n users: AccountInvitationRequestBody[]\n}\n\nexport interface CreateInvitationsByAccountIdResponseBody {\n accountInvitations: AccountInvitation[]\n emailInvitations: EmailInvitation[]\n}\n\nexport interface CreateLocationByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateLocationByAccountIdRequestBody {\n address?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n name: string\n state?: string | null\n}\n\nexport interface CreateLocationByAccountIdResponseBody {\n accountId: string\n location: Location\n}\n\nexport interface CreatePrintPageTemplateByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreatePrintPageTemplateByAccountIdRequestBody {\n created?: string | Date | number | null\n format?: PrintFormat | null\n horizontalMargin: number\n horizontalPadding: number\n isDeleted?: boolean | null\n modified?: string | Date | number | null\n name: string\n numberOfColumns: number\n numberOfRows: number\n orientation?: PrintOrientation | null\n pageSize: Array<any>\n printMode?: PrintMode | null\n printTemplate?: PrintTemplate | null\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit?: PrintUnit\n verticalMargin: number\n verticalPadding: number\n}\n\nexport interface CreatePrintPageTemplateByAccountIdResponseBody {\n printPageTemplate: PrintPageTemplate\n}\n\nexport interface CreatePrintStickerTemplateByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreatePrintStickerTemplateByAccountIdRequestBody {\n bleed?: boolean | null\n name: string\n previewImage: string\n serializedFabric: NestedKeyValueObject\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit?: PrintUnit\n}\n\nexport interface CreatePrintStickerTemplateByAccountIdResponseBody {\n printStickerTemplate: PrintStickerTemplate\n}\n\nexport interface CreateProjectByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateProjectByAccountIdRequestBody {\n companyName?: string | null\n customDomain?: string | null\n description?: string | null\n micrositeCustomDomain?: string | null\n name: string\n workflowCustomDomain?: string | null\n}\n\nexport interface CreateProjectByAccountIdResponseBody {\n accountId: string\n project: Project\n}\n\nexport interface CreateQrCodeLogoByAccountPathParameters {\n accountId: string\n}\n\nexport interface CreateQrCodeLogoByAccountRequestBody {\n logoContentType: string\n}\n\nexport interface CreateQrCodeLogoByAccountResponseBody {\n presignedUrl: string\n qrCodeLogo: QrCodeLogo\n}\n\nexport interface CreateQrCodeStylingTemplateByAccountPathParameters {\n accountId: string\n}\n\nexport interface CreateQrCodeStylingTemplateByAccountRequestBody {\n imageOptions?: QrCodeImageOptions\n name: string\n projectId?: string | null\n}\n\nexport interface CreateQrCodeStylingTemplateByAccountResponseBody {\n accountId: string\n qrCodeStylingTemplate: QrCodeStylingTemplate\n}\n\nexport interface CreateQueryableCustomAttributePathParameters {\n accountId: string\n}\n\nexport interface CreateQueryableCustomAttributeRequestBody {\n customAttributeName: string\n fieldType: FieldType\n}\n\nexport interface CreateQueryableCustomAttributeResponseBody {\n customAttribute: CustomAttribute\n}\n\nexport interface CreateSamlConfigurationPathParameters {\n accountId: string\n}\n\nexport interface CreateSamlConfigurationRequestBody {\n companyName?: string | null\n idpEntityId: string\n idpSingleSignOnServiceUrl: string\n publicCertificate: string\n}\n\nexport interface CreateSamlConfigurationResponseBody {}\n\nexport interface CreateTicketByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateTicketByAccountIdRequestBody {\n category?: string\n impact?: string\n message: string\n subject?: string\n}\n\nexport interface CreateUserMediaMultipartPresignedUrlByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateUserMediaMultipartPresignedUrlByAccountIdRequestBody {\n assetId?: string | null\n category?: string | null\n fileType: UserMediaFileTypes\n name?: string | null\n parts: number\n projectId?: string | null\n scanId?: string | null\n subFolder?: string | null\n}\n\nexport interface CreateUserMediaMultipartPresignedUrlByAccountIdResponseBody {\n presignedUrls: Array<any>\n uploadId: string\n userMedia: UserMedia\n}\n\nexport interface CreateUserMediaPresignedUrlByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateUserMediaPresignedUrlByAccountIdRequestBody {\n allowExpiry?: boolean\n assetId?: string | null\n category?: string | null\n fileType: UserMediaFileTypes\n name?: string | null\n projectId?: string | null\n scanId?: string | null\n subFolder?: string | null\n}\n\nexport interface CreateUserMediaPresignedUrlByAccountIdResponseBody {\n presignedUrl: string\n userMedia: UserMedia\n}\n\nexport interface CreateWebSessionExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateWebSessionExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface CreateWebSessionExportByAccountIdResponseBody {\n fileName?: string | null\n job: Job\n}\n\nexport interface DeleteContactsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface DeleteContactsByAccountIdQueryStringParameters {\n cellPhone?: string | null\n emailAddress?: string | null\n}\n\nexport interface DeleteContactsByAccountIdResponseBody {\n accountId: string\n contacts: Contact[]\n}\n\nexport interface DeleteUserByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface EnablePluginByAccountIdPathParameters {\n accountId: string\n pluginId: string\n}\n\nexport interface GetAccountPathParameters {\n accountId: string\n}\n\nexport interface GetAccountResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface GetCustomDomainPathParameters {\n accountId: string\n customDomain: string\n}\n\nexport interface GetCustomDomainResponseBody {\n accountDomain: AccountDomain\n}\n\nexport interface GetAccountPluginPasswordPathParameters {\n accountId: string\n pluginId: string\n}\n\nexport interface GetAccountPluginPasswordResponseBody {\n password?: string | null\n}\n\nexport interface GetAdvancedAssetReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAdvancedAssetReportByAccountIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedAssetReportByAccountIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAdvancedContactReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAdvancedContactReportByAccountIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedContactReportByAccountIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAdvancedScanReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAdvancedScanReportByAccountIdQueryStringParameters {\n displayMostRecentPerAsset?: boolean\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAdvancedScanReportByAccountIdResponseBody {\n dynamicQRCodesTotal: number\n lastScan?: LastScan | null\n projectsTotal: number\n scansByDevice: NestedKeyValueObject\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n scansTotal: number\n staticQRCodesTotal: number\n}\n\nexport interface GetAllAppsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAllAppsByAccountIdQueryStringParameters {\n appName?: string | null\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAllAppsByAccountIdResponseBody {\n apps: App[]\n}\n\nexport interface GetApiKeysByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetApiKeysByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetApiKeysByAccountIdResponseBody {\n accountId: string\n apiKeys: ApiKeyCredentials[]\n lastKey?: string | null\n numberOfApiKeys: number\n}\n\nexport interface GetAssetExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetExportByAccountIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetAssetGraphsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetGraphsByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n projectId?: string | null\n}\n\nexport interface GetAssetGraphsByAccountIdResponseBody {\n assetGraphs: AssetGraph[]\n lastKey?: string | null\n}\n\nexport interface GetAssetTypesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetTypesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n locationId?: string | null\n name?: string | null\n sortField?: AssetTypeSortingTypes | null\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface GetAssetTypesByAccountIdResponseBody {\n accountId: string\n assetTypes: AssetType[]\n assetTypesByLocation?: AssetTypeByLocation[] | null\n lastKey?: string | null\n numberOfAssetTypes: number\n}\n\nexport interface GetAssetsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByAccountIdResponseBody {\n accountId: string\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface GetBasicAssetReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetBasicAssetReportByAccountIdResponseBody {\n assetsCount: number\n}\n\nexport interface GetBasicContactReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetBasicContactReportByAccountIdResponseBody {\n contactsCount: number\n}\n\nexport interface GetBatchesByAccountIdPathParameters {\n projectId: string\n}\n\nexport interface GetBatchesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetBatchesByAccountIdResponseBody {\n batch: Batch\n lastKey?: string | null\n}\n\nexport interface GetConsentByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetConsentByAccountIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetConsentByAccountIdResponseBody {\n accountId: string\n consent: ContactConsent[]\n lastKey?: string | null\n}\n\nexport interface GetContactExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetContactExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetContactExportByAccountIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetContactsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetContactsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n phone?: string | null\n queryCondition?: QueryConditions | null\n sortField?: ContactSortingTypes | null\n}\n\nexport interface GetContactsByAccountIdResponseBody {\n accountId: string\n contacts: Contact[]\n lastKey?: string | null\n numberOfContacts: number\n}\n\nexport interface GetDecryptedKlaviyoKeyPathParameters {\n accountId: string\n pluginId: string\n}\n\nexport interface GetDecryptedKlaviyoKeyResponseBody {\n key?: string | null\n}\n\nexport interface GetDomainsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetDomainsByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n type?: AccountDomainTypes | null\n}\n\nexport interface GetDomainsByAccountIdResponseBody {\n accountDomains: AccountDomain[]\n lastKey?: string | null\n}\n\nexport interface GetInstalledAppsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetInstalledAppsByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetInstalledAppsByAccountIdResponseBody {\n installedApps: AppBasicDetails[]\n}\n\nexport interface GetJobsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetJobsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetJobsByAccountIdResponseBody {\n jobs: Job[]\n lastKey?: string | null\n}\n\nexport interface GetLocationsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetLocationsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: LocationSortingTypes | null\n state?: string | null\n}\n\nexport interface GetLocationsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n locations: Location[]\n numberOfLocations: number\n}\n\nexport interface GetMostScannedAssetsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetMostScannedAssetsByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n limit?: number | null\n to?: string | Date | number | null\n}\n\nexport interface GetMostScannedAssetsByAccountIdResponseBody {\n mostScannedAssets: Array<any>\n}\n\nexport interface GetPluginsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPluginsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPlugins: number\n plugins: ResponseAccountPlugin[]\n}\n\nexport interface GetPricePlanByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPricePlanByAccountIdResponseBody {\n pricePlan: PricePlan\n pricePlanPeriod: PricePlanPeriod\n}\n\nexport interface GetPrintJobsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPrintJobsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n printJobName?: string | null\n}\n\nexport interface GetPrintJobsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPrintJobs: number\n printJobs: PrintJob[]\n}\n\nexport interface GetPrintPageTemplatesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPrintPageTemplatesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n}\n\nexport interface GetPrintPageTemplatesByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPrintPageTemplates: number\n printPageTemplates: PrintPageTemplate[]\n}\n\nexport interface GetPrintStickerTemplatesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPrintStickerTemplatesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n}\n\nexport interface GetPrintStickerTemplatesByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPrintStickerTemplates: number\n printStickerTemplates: PrintStickerTemplate[]\n}\n\nexport interface GetProjectsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetProjectsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: ProjectSortingTypes | null\n}\n\nexport interface GetProjectsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfProjects: number\n projects: Project[]\n}\n\nexport interface GetQrCodeLogosByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrCodeLogosByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetQrCodeLogosByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfQrCodeLogos: number\n qrCodeLogos: QrCodeLogo[]\n}\n\nexport interface GetQrcodeScansExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrcodeScansExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetQrcodeScansExportByAccountIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetQrCodeStylingTemplatesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrCodeStylingTemplatesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n stylingTemplateName?: string | null\n}\n\nexport interface GetQrCodeStylingTemplatesByAccountIdResponseBody {\n accountId: string\n numberOfQrCodeStylingTemplates: number\n qrCodeStylingTemplates: QrCodeStylingTemplate[]\n}\n\nexport interface GetQrCodesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrCodesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n lastKey?: string | null\n limit?: number | null\n sortField?: QrCodeSortingTypes | null\n willGetLogoIds?: boolean | null\n}\n\nexport interface GetQrCodesByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfQrCodes: number\n qrCodes: QrCode[]\n}\n\nexport interface GetQueryableCustomAttributePathParameters {\n accountId: string\n}\n\nexport interface GetQueryableCustomAttributeQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetQueryableCustomAttributeResponseBody {\n customAttributes: CustomAttribute[]\n}\n\nexport interface GetScanDayOfWeekByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanDayOfWeekByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanDayOfWeekByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScanExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n projectId?: string | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByAccountIdResponseBody {\n fileName?: string | null\n job: Job\n}\n\nexport interface GetScanTimeOfDayByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanTimeOfDayByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanTimeOfDayByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScanTimelineByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanTimelineByAccountIdQueryStringParameters {\n from: string | Date | number\n to?: string | Date | number | null\n type: ScanTimelineOptions\n}\n\nexport interface GetScanTimelineByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScansByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScansByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactId?: string | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetScansByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfScans: number\n scans: Scan[]\n}\n\nexport interface GetUserByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface GetUserByAccountIdResponseBody extends ResponseBodyUser {\n created: string | Date | number\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId?: string | null\n lastName: string\n middleName: string\n userId?: string | null\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface GetUserMediasByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetUserMediasByAccountIdQueryStringParameters {\n ascending?: boolean | null\n category?: string | null\n fileType?: string | null\n lastKey?: string | null\n limit?: number | null\n mediaIds?: string | null\n name?: string | null\n sortField?: UserMediaSortingTypes | null\n}\n\nexport interface GetUserMediasByAccountIdResponseBody {\n lastKey?: string | null\n userMedias: UserMedia[]\n}\n\nexport interface GetUsersByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetUsersByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetUsersByAccountIdResponseBody {\n accountId: string\n invitations: ResponseBodyUser[]\n lastKey?: string | null\n numberOfInvitations: number\n numberOfOwners: number\n numberOfUsers: number\n owners: ResponseBodyUser[]\n users: ResponseBodyUser[]\n}\n\nexport interface GetUsersRolesByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface GetUsersRolesByAccountIdResponseBody {\n permissions: Permission[]\n userRoles: UserRole[]\n}\n\nexport interface GetWebSessionsTimelineByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetWebSessionsTimelineByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetWebSessionsTimelineByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface InstallAppToAccountPathParameters {\n accountId: string\n appId: string\n}\n\nexport interface InstallAppToAccountResponseBody {\n appAccount: AppAccount\n}\n\nexport interface RetrieveCampaignStatusByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface RetrieveCampaignStatusByAccountIdResponseBody {\n accountSmsCampaign: AccountSmsCampaign\n}\n\nexport interface CreateCampaignAccountByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateCampaignAccountByAccountIdRequestBody {\n campaignInfo: SmsCampaignRequest\n}\n\nexport interface CreateCampaignAccountByAccountIdResponseBody {\n account: Account\n accountSmsCampaign: AccountSmsCampaign\n}\n\nexport interface AdvanceStripeClockByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface AdvanceStripeClockByAccountIdRequestBody {\n customDate?: string | null\n shortcuts?: string | null\n}\n\nexport interface AdvanceStripeClockByAccountIdResponseBody {\n message: string\n}\n\nexport interface TestDomainConnectionPathParameters {\n accountId: string\n customDomain: string\n}\n\nexport interface TestDomainConnectionResponseBody {\n accountDomain: AccountDomain\n}\n\nexport interface UpdateAccountPathParameters {\n accountId: string\n}\n\nexport interface UpdateAccountRequestBody {\n companyName?: string | null\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n}\n\nexport interface UpdateAccountResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface UpdateKlaviyoAccountPluginPathParameters {\n accountId: string\n pluginId: string\n}\n\nexport interface UpdateKlaviyoAccountPluginRequestBody {\n key?: string | null\n listId: string\n}\n\nexport interface UpdateKlaviyoAccountPluginResponseBody {\n accountPlugin: AccountPlugin\n}\n\nexport interface UpdateEngagePricePlanPathParameters {\n accountId: string\n}\n\nexport interface UpdateEngagePricePlanRequestBody {\n planName: string\n}\n\nexport interface UpdateEngagePricePlanResponseBody {}\n\nexport interface UpdatePricePlanByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface UpdatePricePlanByAccountIdRequestBody {\n paymentPeriod: PricePlanPaymentPeriod\n pricePlanName: PricePlanName\n}\n\nexport interface UpdatePricePlanByAccountIdResponseBody {\n pricePlan: PricePlan\n pricePlanPeriod: PricePlanPeriod\n}\n\nexport interface UpdateRehrigAccountPluginPathParameters {\n accountId: string\n pluginId: string\n}\n\nexport interface UpdateRehrigAccountPluginRequestBody {\n customFields?: NestedKeyValueObject | null\n password?: string | null\n username?: string | null\n}\n\nexport interface UpdateRehrigAccountPluginResponseBody {\n accountPlugin: AccountPlugin\n}\n\nexport interface UpdateUserByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface UpdateUserByAccountIdRequestBody {\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface UpdateUserByAccountIdResponseBody {\n accountUser: AccountUser\n}\n\nexport interface UpdateUsersRolesByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface UpdateUsersRolesByAccountIdRequestBody {\n userRoleIds: Array<any>\n}\n\nexport interface UpdateUsersRolesByAccountIdResponseBody {\n accountUser: AccountUser\n}\n\nexport interface UploadQrCodeLogoByAccountPathParameters {\n accountId: string\n}\n\nexport interface UploadQrCodeLogoByAccountRequestBody {\n logo: string\n}\n\nexport interface UploadQrCodeLogoByAccountResponseBody {\n qrCodeLogoId: string\n qrCodeLogoUrl: string\n}\n\nexport interface GetApiKeyPathParameters {\n apiKeyId: string\n}\n\nexport interface GetApiKeyResponseBody {\n apiKeyId: string\n description?: string | null\n key: string\n name: string\n status: string\n}\n\nexport interface GetApiKeySecretPathParameters {\n apiKeyId: string\n}\n\nexport interface GetApiKeySecretResponseBody {\n apiKeyId: string\n secret?: string | null\n}\n\nexport interface ResetApiKeySecretPathParameters {\n apiKeyId: string\n}\n\nexport interface ResetApiKeySecretResponseBody {\n apiKeyId: string\n secret: string\n}\n\nexport interface UpdateApiKeyPathParameters {\n apiKeyId: string\n}\n\nexport interface UpdateApiKeyRequestBody {\n description?: string | null\n name?: string | null\n}\n\nexport interface UpdateApiKeyResponseBody {\n apiKeyId: string\n description?: string | null\n key: string\n name: string\n status: string\n}\n\nexport interface GetAppByAppIdPathParameters {\n appId: string\n}\n\nexport interface GetAppByAppIdResponseBody {\n app: App\n}\n\nexport interface GetAppsQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n nameSearch?: string | null\n}\n\nexport interface GetAppsResponseBody {\n apps: App[]\n}\n\nexport interface GetPublishedAppsQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n nameSearch?: string | null\n}\n\nexport interface GetPublishedAppsResponseBody {\n apps: App[]\n}\n\nexport interface LoadAppPathParameters {\n accountId: string\n appId: string\n}\n\nexport interface LoadAppResponseBody {\n app: App\n expires: string | Date | number\n sessionToken: string\n}\n\nexport interface UpdateAppByAppIdPathParameters {\n appId: string\n}\n\nexport interface UpdateAppByAppIdRequestBody {\n app: PatchApp\n}\n\nexport interface UpdateAppByAppIdResponseBody {\n app: App\n}\n\nexport interface GetAppAccountByAppAccountIdPathParameters {\n appAccountId: string\n}\n\nexport interface GetAppAccountByAppAccountIdResponseBody extends AppAccount {\n appAccountId: string\n appId: string\n appName: string\n assetCount: number\n contactCount: number\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n emailCount: number\n lastScanId?: string | null\n mainAccountId: string\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n userCount: number\n webSessionCount?: number | null\n}\n\nexport interface GetMainAccountByAppAccountIdPathParameters {\n appAccountId: string\n}\n\nexport interface GetMainAccountByAppAccountIdResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface DeleteAssetGraphPathParameters {\n assetGraphId: string\n}\n\nexport interface GetAssetGraphPathParameters {\n assetGraphId: string\n}\n\nexport interface GetAssetGraphResponseBody {\n assetGraph: ResponseAssetGraph\n}\n\nexport interface UpdateAssetGraphPathParameters {\n assetGraphId: string\n}\n\nexport interface UpdateAssetGraphRequestBody {\n direction?: string\n edges: Array<any>\n name: string\n nodes: Array<any>\n}\n\nexport interface UpdateAssetGraphResponseBody {\n assetGraph: AssetGraph\n}\n\nexport interface ComposeAssetByAssetTypePathParameters {\n assetId: string\n assetTypeId: string\n}\n\nexport interface ComposeAssetByAssetTypeRequestBody {\n category: string\n childItems?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceProperties?: NestedKeyValueObject | null\n locationId?: string | null\n name?: string | null\n staticProperties?: NestedKeyValueObject | null\n totalCount: number\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface ComposeAssetByAssetTypeResponseBody {\n asset: Asset\n assetId: string\n}\n\nexport interface CreateAssetByAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface CreateAssetByAssetTypeRequestBody {\n asset: NestedTypedAsset\n projectId: string\n useCustomDomain?: boolean | null\n}\n\nexport interface CreateAssetByAssetTypeResponseBody {\n asset: ResponseAsset\n assetId: string\n assetType: AssetType\n}\n\nexport interface DeleteAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface DeleteAssetTypeResponseBody {\n assetType: AssetType\n}\n\nexport interface GetAssetTypeByAssetTypeIdPathParameters {\n assetTypeId: string\n}\n\nexport interface GetAssetTypeByAssetTypeIdQueryStringParameters {}\n\nexport interface GetAssetTypeByAssetTypeIdResponseBody {\n assetType: AssetType\n}\n\nexport interface GetAssetTypeCountAtLocationPathParameters {\n assetTypeId: string\n locationId: string\n}\n\nexport interface GetAssetTypeCountAtLocationResponseBody {\n assetTypeByLocation: AssetTypeByLocation\n}\n\nexport interface GetAssetsByAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface GetAssetsByAssetTypeQueryStringParameters {\n ascending?: boolean | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetByAssetTypeSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByAssetTypeResponseBody {\n assetTypeId: string\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface GetAssetTypeCountsByLocationPathParameters {\n assetTypeId: string\n}\n\nexport interface GetAssetTypeCountsByLocationQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: LocationSortingTypes | null\n state?: string | null\n}\n\nexport interface GetAssetTypeCountsByLocationResponseBody {\n assetType: AssetType\n assetTypesByLocation: AssetTypeByLocation[]\n count: number\n lastKey?: string | null\n}\n\nexport interface UpdateAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface UpdateAssetTypeRequestBody {\n category?: string | null\n childItems?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceProperties?: NestedKeyValueObject | null\n intent?: string | null\n name?: string | null\n staticProperties?: NestedKeyValueObject | null\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface UpdateAssetTypeResponseBody {\n assetType: AssetType\n assetTypeId: string\n}\n\nexport interface UpdateAssetTypeCountAtLocationPathParameters {\n assetTypeId: string\n locationId: string\n}\n\nexport interface UpdateAssetTypeCountAtLocationRequestBody {\n count: number\n isDelta?: boolean\n}\n\nexport interface UpdateAssetTypeCountAtLocationResponseBody {\n assetType: AssetType\n assetTypeByLocation: AssetTypeByLocation\n}\n\nexport interface CreateContactByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateContactByAssetIdRequestBody {\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface CreateContactByAssetIdResponseBody {\n asset: Asset\n assetContact: AssetContact\n assetId: string\n contact: Contact\n projectContact: ProjectContact\n}\n\nexport interface CreateNeighborsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateNeighborsByAssetIdRequestBody {\n neighbors: Array<any>\n}\n\nexport interface CreateQrCodeByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateQrCodeByAssetIdRequestBody extends NestedQrCode {\n customQueryStringParameterName?: string\n dynamicRedirectType?: QrCodeDynamicRedirectType\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKeyType?: QrCodeLocatorKeyType\n qrCodes?: NestedQrCode[]\n serializedLocatorKey?: string | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface CreateQrCodeByAssetIdResponseBody {\n asset: Asset\n assetId: string\n locatorKey: string\n qrCode: ResponseQrCode\n qrCodeId: string\n}\n\nexport interface CreateQrCodesByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateQrCodesByAssetIdRequestBody {\n qrCodes?: NestedQrCode[]\n}\n\nexport interface CreateQrCodesByAssetIdResponseBody {\n asset: Asset\n assetId: string\n locatorKeys: QrCodeLocator[]\n qrCodes: ResponseQrCode[]\n}\n\nexport interface DeleteAssetPathParameters {\n assetId: string\n}\n\nexport interface DeleteAssetResponseBody {\n asset: Asset\n}\n\nexport interface DeleteNeighborsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface DeleteNeighborsByAssetIdRequestBody {\n neighbors: Array<any>\n}\n\nexport interface GetAssetPathParameters {\n assetId: string\n}\n\nexport interface GetAssetQueryStringParameters {\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n getUserMedias?: boolean\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n stylingTemplateId?: string | null\n version?: number | null\n width?: number | null\n}\n\nexport interface GetAssetResponseBody {\n asset: ResponseAsset\n assetId: string\n}\n\nexport interface GetAssetHistoryPathParameters {\n assetId: string\n}\n\nexport interface GetAssetHistoryQueryStringParameters {\n ascending?: boolean | null\n at?: string | Date | number | null\n from?: string | Date | number | null\n lastKey?: string | null\n limit?: number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetHistoryResponseBody {\n assetId: string\n history: Asset[]\n lastKey?: string | null\n numberOfRecords: number\n}\n\nexport interface GetContactsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetContactsByAssetIdQueryStringParameters {\n ascending?: boolean | null\n contactName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n phone?: string | null\n queryCondition?: QueryConditions | null\n sortField?: ContactAssetSortingTypes | null\n}\n\nexport interface GetContactsByAssetIdResponseBody {\n assetContacts: AssetContact[]\n assetId: string\n contacts: Contact[]\n lastKey?: string | null\n numberOfContacts: number\n}\n\nexport interface GetExternalNeighborScanCountByAssetIdPathParameters {\n assetId: string\n url: string\n}\n\nexport interface GetExternalNeighborScanCountByAssetIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetExternalNeighborScanCountByAssetIdResponseBody {\n scanCount: number\n}\n\nexport interface GetNeighborScanCountByAssetIdPathParameters {\n assetId: string\n neighborId: string\n}\n\nexport interface GetNeighborScanCountByAssetIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetNeighborScanCountByAssetIdResponseBody {\n scanCount: number\n}\n\nexport interface GetNeighborsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetNeighborsByAssetIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetNeighborsByAssetIdResponseBody {\n lastKey?: string | null\n neighbors: Array<any>\n}\n\nexport interface GetQrCodesByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetQrCodesByAssetIdQueryStringParameters {\n ascending?: boolean | null\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n includeQrCodeLinks?: boolean\n lastKey?: string | null\n lightColor?: string | null\n limit?: number | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n sortField?: QrCodeSortingTypes | null\n stylingTemplateId?: string | null\n version?: number | null\n width?: number | null\n}\n\nexport interface GetQrCodesByAssetIdResponseBody {\n assetId: string\n lastKey?: string | null\n numberOfQrCodes: number\n qrCodes: ResponseQrCode[]\n}\n\nexport interface GetScanExportByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetScanExportByAssetIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByAssetIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetScanLocationDataByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetScanLocationDataByAssetIdQueryStringParameters {\n displayMostRecentPerAsset?: boolean\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanLocationDataByAssetIdResponseBody {\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n}\n\nexport interface GetScansByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetScansByAssetIdQueryStringParameters {\n ascending?: boolean\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetScansByAssetIdResponseBody {\n assetId: string\n lastKey?: string | null\n numberOfScans: number\n scans: Scan[]\n}\n\nexport interface GetUserMediasByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetUserMediasByAssetIdQueryStringParameters {\n ascending?: boolean | null\n category?: string | null\n fileType?: string | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: UserMediaSortingTypes | null\n}\n\nexport interface GetUserMediasByAssetIdResponseBody {\n assetId: string\n lastKey?: string | null\n userMedias: UserMedia[]\n}\n\nexport interface LinkContactToAssetPathParameters {\n assetId: string\n contactId: string\n}\n\nexport interface LinkContactToAssetRequestBody {\n type?: string | null\n}\n\nexport interface LinkContactToAssetResponseBody {\n assetContact: AssetContact\n projectContact: ProjectContact\n}\n\nexport interface UnlinkContactToAssetPathParameters {\n assetId: string\n contactId: string\n}\n\nexport interface UpdateAssetPathParameters {\n assetId: string\n}\n\nexport interface UpdateAssetRequestBody {\n assetTypeId?: string | null\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n mediaIds?: Array<any> | null\n name?: string | null\n parentAssetId?: string | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface UpdateAssetResponseBody {\n asset: Asset\n assetId: string\n assetType?: AssetType | null\n location?: Location | null\n}\n\nexport interface GetAssetsByBatchIdPathParameters {\n batchId: string\n}\n\nexport interface GetAssetsByBatchIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByBatchIdResponseBody {\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface CancelDowngradeRequestPathParameters {\n accountId: string\n}\n\nexport interface CancelDowngradeRequestResponseBody {}\n\nexport interface CancelSubscriptionPathParameters {\n accountId: string\n}\n\nexport interface CancelSubscriptionRequestBody {}\n\nexport interface CancelSubscriptionResponseBody {}\n\nexport interface ChangeSubscriptionPreviewPathParameters {\n accountId: string\n}\n\nexport interface ChangeSubscriptionPreviewQueryStringParameters {\n planName: string\n}\n\nexport interface ChangeSubscriptionPreviewResponseBody {\n preview: NestedKeyValueObject\n}\n\nexport interface CreateSetupIntentPathParameters {\n accountId: string\n}\n\nexport interface CreateSetupIntentRequestBody {\n appId?: string | null\n planName?: string | null\n updateBilling?: boolean\n}\n\nexport interface CreateSetupIntentResponseBody {\n setupIntent: string\n}\n\nexport interface DowngradePlanPathParameters {\n accountId: string\n}\n\nexport interface DowngradePlanRequestBody {\n planName: string\n}\n\nexport interface DowngradePlanResponseBody {}\n\nexport interface GetBillingDetailsPathParameters {\n accountId: string\n}\n\nexport interface GetBillingDetailsResponseBody {\n billingDetails?: CreditCard | null\n}\n\nexport interface GetCurrentPeriodPathParameters {\n accountId: string\n}\n\nexport interface GetCurrentPeriodResponseBody {\n endDate: string\n startDate: string\n}\n\nexport interface GetInvoicesPathParameters {\n accountId: string\n}\n\nexport interface GetInvoicesQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetInvoicesResponseBody {\n invoices: Invoice[]\n lastKey?: string | null\n}\n\nexport interface ChangeSubscriptionPathParameters {\n accountId: string\n}\n\nexport interface ChangeSubscriptionRequestBody {\n planName: string\n}\n\nexport interface ChangeSubscriptionResponseBody {}\n\nexport interface GetAllAccountsQueryStringParameters {\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAllAccountsResponseBody {\n accounts: Account[]\n lastKey?: string | null\n}\n\nexport interface CreateConsentByContactIdPathParameters {\n contactId: string\n}\n\nexport interface CreateConsentByContactIdRequestBody {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n consentedAt: string | Date | number\n projectId?: string | null\n url?: string | null\n urls?: string[]\n}\n\nexport interface CreateConsentByContactIdResponseBody {\n consent: ContactConsent\n contactId: string\n}\n\nexport interface DeleteConsentByContactIdPathParameters {\n contactId: string\n}\n\nexport interface DeleteConsentByContactIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n projectId?: string | null\n}\n\nexport interface DeleteConsentByContactIdResponseBody {\n consent: ContactConsent\n contactId: string\n}\n\nexport interface DeleteContactPathParameters {\n contactId: string\n}\n\nexport interface DeleteContactResponseBody {\n contact: Contact\n}\n\nexport interface GetAssetsByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetAssetsByContactIdQueryStringParameters {\n ascending?: boolean | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n type?: string | null\n}\n\nexport interface GetAssetsByContactIdResponseBody {\n assets: Asset[]\n contactId: string\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface GetConsentByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetConsentByContactIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType?: ConsentType | null\n lastKey?: string | null\n limit?: number | null\n projectId?: string | null\n}\n\nexport interface GetConsentByContactIdResponseBody {\n consent: ContactConsent[]\n contactId: string\n lastKey?: string | null\n}\n\nexport interface GetContactPathParameters {\n contactId: string\n}\n\nexport interface GetContactResponseBody {\n contact: Contact\n}\n\nexport interface GetContactExportByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetContactExportByContactIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetContactExportByContactIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetScanExportByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetScanExportByContactIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByContactIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetScanLocationDataByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetScanLocationDataByContactIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanLocationDataByContactIdResponseBody {\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n}\n\nexport interface GetScansByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetScansByContactIdResponseBody {\n scans: Scan[]\n}\n\nexport interface LinkContactToScanPathParameters {\n contactId: string\n scanId: string\n}\n\nexport interface LinkContactToScanRequestBody {\n type?: string | null\n}\n\nexport interface LinkContactToScanResponseBody extends ScanContact {\n assetId: string\n assetName: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n}\n\nexport interface UpdateContactPathParameters {\n contactId: string\n}\n\nexport interface UpdateContactRequestBody {\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n}\n\nexport interface UpdateContactResponseBody {\n contact: Contact\n contactId: string\n}\n\nexport interface CheckCustomLocatorKeyRangePathParameters {\n customDomain: string\n}\n\nexport interface CheckCustomLocatorKeyRangeQueryStringParameters {\n endingValue: number\n prefix: string\n startingValue: number\n}\n\nexport interface CheckCustomLocatorKeyRangeResponseBody {}\n\nexport interface DeleteCustomDomainPathParameters {\n customDomain: string\n}\n\nexport interface RetryCustomDomainPathParameters {\n customDomain: string\n}\n\nexport interface RetryCustomDomainResponseBody {\n accountDomain: AccountDomain\n}\n\nexport interface GetFilePathParameters {\n fileId: string\n}\n\nexport interface GetFileResponseBody {\n file: File\n}\n\nexport interface ValidateFilePathParameters {\n fileId: string\n}\n\nexport interface ValidateFileResponseBody {\n errsObject: NestedKeyValueObject\n file: File\n}\n\nexport interface CreateUserByInvitationIdPathParameters {\n invitationId: string\n}\n\nexport interface CreateUserByInvitationIdResponseBody {\n account: Account\n accountUser: AccountUser\n}\n\nexport interface DeleteInvitationPathParameters {\n invitationId: string\n}\n\nexport interface DeleteInvitationResponseBody {\n accountInvitation: AccountInvitation\n emailInvitation?: EmailInvitation | null\n}\n\nexport interface GetInvitationPathParameters {\n invitationId: string\n}\n\nexport interface GetInvitationResponseBody {\n accountInvitation: AccountInvitation\n}\n\nexport interface DeleteJobPathParameters {\n jobId: string\n}\n\nexport interface DeleteJobResponseBody {\n job: Job\n}\n\nexport interface DeletePrintJobPathParameters {\n printJobId: string\n}\n\nexport interface DeletePrintJobResponseBody {\n printJob: PrintJob\n}\n\nexport interface GetJobPathParameters {\n jobId: string\n}\n\nexport interface GetJobResponseBody {\n job: Job\n}\n\nexport interface InvokePrintJobByJobIdPathParameters {\n printJobId: string\n}\n\nexport interface InvokePrintJobByJobIdResponseBody {\n printJob: PrintJob\n}\n\nexport interface UpdateAssetsLocationsPathParameters {\n locationId: string\n}\n\nexport interface UpdateAssetsLocationsRequestBody {\n assetIds: Array<any>\n}\n\nexport interface UpdateAssetsLocationsResponseBody {\n assets: Asset\n}\n\nexport interface DeleteLocationPathParameters {\n locationId: string\n}\n\nexport interface DeleteLocationQueryStringParameters {}\n\nexport interface DeleteLocationResponseBody {\n location: Location\n}\n\nexport interface GetAssetsByLocationIdPathParameters {\n locationId: string\n}\n\nexport interface GetAssetsByLocationIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByLocationIdResponseBody {\n assets: Asset[]\n lastKey?: string | null\n locationId: string\n numberOfAssets: number\n}\n\nexport interface UpdateLocationPathParameters {\n locationId: string\n}\n\nexport interface UpdateLocationRequestBody {\n address?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n name?: string | null\n state?: string | null\n}\n\nexport interface UpdateLocationResponseBody {\n location: Location\n}\n\nexport interface SendSupportEmailRequestBody {\n body: string\n captchaToken: string\n from: string\n subject?: string\n to?: OpenscreenEmails\n}\n\nexport interface GetPricePlansResponseBody {\n pricePlans: NestedKeyValueObject\n}\n\nexport interface AssignDomainToProjectPathParameters {\n customDomain: string\n projectId: string\n}\n\nexport interface AssignDomainToProjectResponseBody {\n projectDomain: ProjectDomain\n}\n\nexport interface CreateAssetBatchValidationJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetBatchValidationJobByProjectIdRequestBody {\n callbackUrl?: string | null\n fileId?: string | null\n trackFileId?: string | null\n trackJobId?: string | null\n}\n\nexport interface CreateAssetBatchValidationJobByProjectIdResponseBody {\n job: Job\n}\n\nexport interface CreateAssetByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetByProjectIdRequestBody extends NestedAsset {\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name: string\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n useCustomDomain?: boolean | null\n willCreateSession?: boolean | null\n}\n\nexport interface CreateAssetByProjectIdResponseBody {\n asset: ResponseAsset\n projectId: string\n}\n\nexport interface CreateAssetCreationJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetCreationJobByProjectIdRequestBody {\n assets?: AssetFieldsObject[] | null\n callbackUrl?: string | null\n commonProperties?: AssetFieldsObject | null\n fileId?: string | null\n}\n\nexport interface CreateAssetCreationJobByProjectIdResponseBody {\n batch: Batch\n job: Job\n}\n\nexport interface CreateAssetCreationPresignedUrlPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetCreationPresignedUrlRequestBody {\n fileType?: AssetCreationFileTypes\n}\n\nexport interface CreateAssetCreationPresignedUrlResponseBody {\n file: File\n presignedUrl: string\n s3Key: string\n}\n\nexport interface CreateAssetGraphByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetGraphByProjectIdRequestBody {\n edges: NestedKeyValueObject\n name: string\n nodes: NestedKeyValueObject\n}\n\nexport interface CreateAssetGraphByProjectIdResponseBody {\n assetGraph: AssetGraph\n}\n\nexport interface CreateAssetsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetsByProjectIdRequestBody {\n assets: AssetFieldsObject[]\n commonProperties?: AssetFieldsObject | null\n}\n\nexport interface CreateAssetsByProjectIdResponseBody {\n assets: ResponseAsset[]\n numberOfAssets: number\n projectId: string\n}\n\nexport interface CreateContactByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateContactByProjectIdRequestBody {\n asset?: NestedAsset | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface CreateContactByProjectIdResponseBody {\n asset?: Asset | null\n assetContact?: AssetContact | null\n contact: Contact\n projectContact: ProjectContact\n projectId: string\n qrCodes?: QrCode[] | null\n}\n\nexport interface CreateContactsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateContactsByProjectIdRequestBody {\n contacts: NestedContact[]\n}\n\nexport interface CreateContactsByProjectIdResponseBody {\n contacts: Array<any>\n numberOfContacts: number\n projectId: string\n}\n\nexport interface CreatePrintJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreatePrintJobByProjectIdRequestBody {\n assetIds?: Array<any> | null\n callbackUrl?: string | null\n printOptions: PrintOptions\n}\n\nexport interface CreatePrintJobByProjectIdResponseBody {\n fileExpiry: string | Date | number\n fileName: string\n}\n\nexport interface CreateQrCodeByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateQrCodeByProjectIdRequestBody {\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n}\n\nexport interface CreateQrCodeByProjectIdResponseBody {\n locatorKey: string\n projectId: string\n qrCode: QrCode\n qrCodeId: string\n}\n\nexport interface CreateSelfQueuePrintJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateSelfQueuePrintJobByProjectIdRequestBody {\n batchId?: string | null\n callbackUrl?: string | null\n imageOptions?: QrCodeImageOptions | null\n pageSize?: number | null\n printOptions: PrintOptions\n serializedFabric?: NestedKeyValueObject | null\n sortField?: QrCodeSortingTypes | null\n stylingTemplateId?: string | null\n}\n\nexport interface CreateSelfQueuePrintJobByProjectIdResponseBody {\n job: Job\n}\n\nexport interface CreateSmsTemplateByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateSmsTemplateByProjectIdRequestBody {\n body?: string | null\n responseUrl?: string | null\n smsTemplateName: string\n statusUrl?: string | null\n}\n\nexport interface CreateSmsTemplateByProjectIdResponseBody {\n smsTemplate: SmsTemplate\n}\n\nexport interface CreateTemplatedPrintJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateTemplatedPrintJobByProjectIdRequestBody {\n assetIds?: Array<any> | null\n callbackUrl?: string | null\n imageOptions?: QrCodeImageOptions | null\n name?: string | null\n printOptions: PrintOptions\n serializedFabric: NestedKeyValueObject\n stylingTemplateId?: string | null\n}\n\nexport interface CreateTemplatedPrintJobByProjectIdResponseBody {\n fileExpiry: string | Date | number\n job: PrintJob\n outputUrl: string\n}\n\nexport interface CreateTemplatedPrintPreviewByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateTemplatedPrintPreviewByProjectIdRequestBody {\n assetIds?: Array<any> | null\n batchId?: string | null\n imageOptions?: QrCodeImageOptions | null\n printOptions: PrintOptions\n serializedFabric: NestedKeyValueObject\n stylingTemplateId?: string | null\n}\n\nexport interface CreateTemplatedPrintPreviewByProjectIdResponseBody {\n outputUrl: string\n}\n\nexport interface CreateWebSessionExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateWebSessionExportByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface CreateWebSessionExportByProjectIdResponseBody {\n fileName?: string | null\n job: Job\n}\n\nexport interface DeleteContactsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface DeleteContactsByProjectIdQueryStringParameters {\n cellPhone?: string | null\n emailAddress?: string | null\n}\n\nexport interface DeleteContactsByProjectIdResponseBody {\n contacts: Contact[]\n projectId: string\n}\n\nexport interface DeleteProjectPathParameters {\n projectId: string\n}\n\nexport interface DeleteProjectResponseBody {\n project: Project\n}\n\nexport interface DeleteSmsTemplateByProjectIdPathParameters {\n projectId: string\n smsTemplateName: string\n}\n\nexport interface DeleteSmsTemplateByProjectIdResponseBody {\n body?: string | null\n projectId: string\n responseUrl?: string | null\n smsTemplateName?: string | null\n statusUrl?: string | null\n}\n\nexport interface GetAdvancedAssetReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAdvancedAssetReportByProjectIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedAssetReportByProjectIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAdvancedContactReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAdvancedContactReportByProjectIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedContactReportByProjectIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAdvancedScanReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAdvancedScanReportByProjectIdQueryStringParameters {\n displayMostRecentPerAsset?: boolean\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAdvancedScanReportByProjectIdResponseBody {\n dynamicQRCodesTotal: number\n lastScan?: LastScan | null\n scansByDevice: NestedKeyValueObject\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n scansTotal: number\n staticQRCodesTotal: number\n}\n\nexport interface GetAllExportsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAllExportsByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAllExportsByProjectIdResponseBody {\n job: Job\n}\n\nexport interface GetAssetExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAssetExportByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetExportByProjectIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetAssetGraphsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAssetGraphsByProjectIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAssetGraphsByProjectIdResponseBody {\n assetGraphs: AssetGraph[]\n lastKey?: string | null\n}\n\nexport interface GetAssetsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAssetsByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeQrCodeLinks?: boolean\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByProjectIdResponseBody {\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n projectId: string\n}\n\nexport interface GetBasicAssetReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetBasicAssetReportByProjectIdResponseBody {\n assetsCount: number\n}\n\nexport interface GetBasicContactReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetBasicContactReportByProjectIdResponseBody {\n contactsCount: number\n}\n\nexport interface GetBatchesByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetBatchesByProjectIdQueryStringParameters extends NestedAsset {\n ascending?: boolean | null\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n lastKey?: string | null\n limit?: number | null\n locationId?: string | null\n name: string\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface GetBatchesByProjectIdResponseBody {\n asset: ResponseAsset\n projectId: string\n}\n\nexport interface GetConsentByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetConsentByProjectIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetConsentByProjectIdResponseBody {\n consent: ContactConsent[]\n lastKey?: string | null\n projectId: string\n}\n\nexport interface GetContactExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetContactExportByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetContactExportByProjectIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetContactsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetContactsByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n phone?: string | null\n queryCondition?: QueryConditions | null\n sortField?: ContactSortingTypes | null\n}\n\nexport interface GetContactsByProjectIdResponseBody {\n contacts: Contact[]\n lastKey?: string | null\n numberOfContacts: number\n projectId: string\n}\n\nexport interface GetMostScannedAssetsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetMostScannedAssetsByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n limit?: number | null\n to?: string | Date | number | null\n}\n\nexport interface GetMostScannedAssetsByProjectIdResponseBody {\n mostScannedAssets: Array<any>\n}\n\nexport interface GetProjectByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetProjectByProjectIdResponseBody {\n project: Project\n}\n\nexport interface GetQrCodeScansExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetQrCodeScansExportByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetQrCodeScansExportByProjectIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetQrCodesByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetQrCodesByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n lastKey?: string | null\n limit?: number | null\n sortField?: QrCodeSortingTypes | null\n willGetLogoIds?: boolean | null\n}\n\nexport interface GetQrCodesByProjectIdResponseBody {\n lastKey?: string | null\n numberOfQrCodes: number\n projectId: string\n qrCodes: QrCode[]\n}\n\nexport interface GetScanDayOfWeekByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanDayOfWeekByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanDayOfWeekByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScanExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanExportByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByProjectIdResponseBody {\n fileName?: string | null\n job: Job\n}\n\nexport interface GetScanTimeOfDayByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanTimeOfDayByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanTimeOfDayByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScanTimelineByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanTimelineByProjectIdQueryStringParameters {\n from: string | Date | number\n to?: string | Date | number | null\n type: ScanTimelineOptions\n}\n\nexport interface GetScanTimelineByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScansByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScansByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactId?: string | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetScansByProjectIdResponseBody {\n lastKey?: string | null\n numberOfScans: number\n projectId: string\n scans: Scan[]\n}\n\nexport interface GetSmsTemplateByProjectIdPathParameters {\n projectId: string\n smsTemplateName: string\n}\n\nexport interface GetSmsTemplateByProjectIdResponseBody {\n body?: string | null\n projectId: string\n responseUrl?: string | null\n smsTemplateName: string\n statusUrl?: string | null\n}\n\nexport interface GetSmsTemplatesByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetSmsTemplatesByProjectIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetSmsTemplatesByProjectIdResponseBody {\n lastKey?: string | null\n numberOfSmsTemplates: number\n projectId: string\n smsTemplates: SmsTemplate[]\n}\n\nexport interface GetUserMediasByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetUserMediasByProjectIdQueryStringParameters {\n ascending?: boolean | null\n category?: string | null\n fileType?: string | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: UserMediaSortingTypes | null\n}\n\nexport interface GetUserMediasByProjectIdResponseBody {\n lastKey?: string | null\n projectId: string\n userMedias: UserMedia[]\n}\n\nexport interface GetWebSessionsTimelineByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetWebSessionsTimelineByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetWebSessionsTimelineByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface UpdateProjectByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface UpdateProjectByProjectIdRequestBody {\n companyName?: string | null\n customDomain?: string | null\n description?: string | null\n name?: string | null\n status?: ProjectStatus | null\n}\n\nexport interface UpdateProjectByProjectIdResponseBody {\n project: Project\n}\n\nexport interface UpdateSmsTemplatePathParameters {\n projectId: string\n smsTemplateName: string\n}\n\nexport interface UpdateSmsTemplateRequestBody {\n body?: string | null\n responseUrl?: string | null\n statusUrl?: string | null\n}\n\nexport interface UpdateSmsTemplateResponseBody {\n body?: string | null\n projectId: string\n responseUrl?: string | null\n smsTemplateName?: string | null\n statusUrl?: string | null\n}\n\nexport interface GetQrCodeLinkPathParameters {\n qrCodeLink: string\n}\n\nexport interface GetQrCodeLinkResponseBody {\n qrCodeLink: QrCodeLink\n}\n\nexport interface GetQrCodeLogoByQrCodeLogoIdPathParameters {\n qrCodeLogoId: string\n}\n\nexport interface GetQrCodeLogoByQrCodeLogoIdResponseBody {\n qrCodeLogo: QrCodeLogo\n qrCodeLogoId: string\n}\n\nexport interface UpdateQrCodeLogoByQrCodeLogoIdPathParameters {\n qrCodeLogoId: string\n}\n\nexport interface UpdateQrCodeLogoByQrCodeLogoIdRequestBody {\n hidden?: boolean | null\n}\n\nexport interface UpdateQrCodeLogoByQrCodeLogoIdResponseBody {\n qrCodeLogo: QrCodeLogo\n qrCodeLogoId: string\n}\n\nexport interface CreateLinkByQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface CreateLinkByQrCodeRequestBody {\n qrCodeLink?: string | null\n}\n\nexport interface CreateLinkByQrCodeResponseBody {\n qrCodeLink: QrCodeLink\n}\n\nexport interface DeleteLinkByQrCodePathParameters {\n link: string\n qrCodeId: string\n}\n\nexport interface DeleteQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface DeleteQrCodeResponseBody {\n qrCode: QrCode\n}\n\nexport interface GetLinksByQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface GetLinksByQrCodeResponseBody {\n qrCodeLinks: Array<any>\n}\n\nexport interface GetQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface GetQrCodeQueryStringParameters {\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n getQrCodeLinks?: boolean\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n stylingTemplateId?: string | null\n version?: number | null\n width?: number | null\n}\n\nexport interface GetQrCodeResponseBody extends ResponseQrCode {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n created?: string | Date | number | null\n customDomain?: string | null\n dynamicRedirectType?: QrCodeDynamicRedirectType\n image: QrCodeImage\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKey: string\n locatorKeyType?: QrCodeLocatorKeyType\n modified?: string | Date | number | null\n name?: string | null\n projectId?: string | null\n qrCodeId: string\n qrCodeLinks?: Array<any> | null\n scanCount: number\n serializedLocatorKey?: string | null\n status?: QrCodeStatus\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface UpdateQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface UpdateQrCodeRequestBody {\n customDomain?: string | null\n dynamicRedirectType?: QrCodeDynamicRedirectType | null\n imageOptions?: QrCodeImageOptions | null\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n isAskingForGPS?: boolean | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n}\n\nexport interface UpdateQrCodeResponseBody {\n qrCode: ResponseQrCode\n}\n\nexport interface CreateContactByScanIdPathParameters {\n scanId: string\n}\n\nexport interface CreateContactByScanIdRequestBody {\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface CreateContactByScanIdResponseBody {\n asset: Asset\n assetContact: AssetContact\n assetId: string\n contact: Contact\n projectContact: ProjectContact\n scanContact: ScanContact\n}\n\nexport interface GetScanPathParameters {\n scanId: string\n}\n\nexport interface GetScanQueryStringParameters {\n getUserMedias?: boolean\n}\n\nexport interface GetScanResponseBody {\n asset: Asset\n assetType?: AssetType | null\n contacts: Contact[]\n qrCode: QrCode\n scan: Scan\n}\n\nexport interface SaveGeolocationByScanIdPathParameters {\n scanId: string\n}\n\nexport interface SaveGeolocationByScanIdRequestBody {\n latitude?: string | null\n longitude?: string | null\n}\n\nexport interface SendEmailByScanIdPathParameters {\n scanId: string\n}\n\nexport interface SendEmailByScanIdRequestBody {\n attachmentName?: string | null\n attachmentPath?: string | null\n body: string\n destination: Array<any>\n replyTo?: Array<any>\n senderName: string\n source: string\n subject: string\n}\n\nexport interface SendSmsByScanIdPathParameters {\n scanId: string\n}\n\nexport interface SendSmsByScanIdRequestBody {\n body?: string | null\n cellPhone?: string | null\n contactId?: string | null\n customVariables?: NestedKeyValueObject | null\n sessionId?: string | null\n smsTemplateName?: string | null\n}\n\nexport interface SendSmsByScanIdResponseBody {\n sms: Sms\n}\n\nexport interface UpdateScanCustomAttributePathParameters {\n scanId: string\n}\n\nexport interface UpdateScanCustomAttributeRequestBody {\n customAttributes?: NestedKeyValueObject | null\n}\n\nexport interface UpdateScanCustomAttributeResponseBody {\n scan: Scan\n}\n\nexport interface DeletePrintPageTemplatePathParameters {\n printPageTemplateId: string\n}\n\nexport interface DeletePrintStickerTemplatePathParameters {\n printStickerTemplateId: string\n}\n\nexport interface DeleteQrCodeStylingTemplateByStylingTemplateIdPathParameters {\n stylingTemplateId: string\n}\n\nexport interface DeleteQrCodeStylingTemplateByStylingTemplateIdResponseBody {\n qrCodeStylingTemplate: QrCodeStylingTemplate\n stylingTemplateId: string\n}\n\nexport interface GetPrintPageTemplatePathParameters {\n printPageTemplateId: string\n}\n\nexport interface GetPrintPageTemplateResponseBody {\n printPageTemplate: PrintPageTemplate\n}\n\nexport interface GetPrintStickerTemplatePathParameters {\n printStickerTemplateId: string\n}\n\nexport interface GetPrintStickerTemplateResponseBody {\n printStickerTemplate: PrintStickerTemplate\n}\n\nexport interface GetQrCodeStylingTemplateByStylingTemplateIdPathParameters {\n stylingTemplateId: string\n}\n\nexport interface GetQrCodeStylingTemplateByStylingTemplateIdResponseBody {\n qrCodeStylingTemplate: QrCodeStylingTemplate\n stylingTemplateId: string\n}\n\nexport interface UpdatePrintPageTemplatePathParameters {\n printPageTemplateId: string\n}\n\nexport interface UpdatePrintPageTemplateRequestBody {\n created?: string | Date | number | null\n format?: PrintFormat | null\n horizontalMargin: number\n horizontalPadding: number\n isDeleted?: boolean | null\n modified?: string | Date | number | null\n name: string\n numberOfColumns: number\n numberOfRows: number\n orientation?: PrintOrientation | null\n pageSize: Array<any>\n printMode?: PrintMode | null\n printTemplate?: PrintTemplate | null\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit: PrintUnit\n verticalMargin: number\n verticalPadding: number\n}\n\nexport interface UpdatePrintPageTemplateResponseBody {\n printPageTemplate: PrintPageTemplate\n}\n\nexport interface UpdatePrintStickerTemplatePathParameters {\n printStickerTemplateId: string\n}\n\nexport interface UpdatePrintStickerTemplateRequestBody {\n bleed?: boolean | null\n created?: string | Date | number | null\n isDeleted?: boolean | null\n lastUsedAt?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n previewImage?: string | null\n serializedFabric: NestedKeyValueObject\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit: PrintUnit\n}\n\nexport interface UpdatePrintStickerTemplateResponseBody {\n printStickerTemplate: PrintStickerTemplate\n}\n\nexport interface UpdateQrCodeStylingTemplateByStylingTemplateIdPathParameters {\n stylingTemplateId: string\n}\n\nexport interface UpdateQrCodeStylingTemplateByStylingTemplateIdRequestBody {\n imageOptions?: QrCodeImageOptionsNoDefaults\n name?: string | null\n qrCodeLogoId?: string | null\n}\n\nexport interface UpdateQrCodeStylingTemplateByStylingTemplateIdResponseBody {\n qrCodeStylingTemplate: QrCodeStylingTemplate\n stylingTemplateId: string\n}\n\nexport interface CompleteUserMediaMultipartUploadPathParameters {\n mediaId: string\n}\n\nexport interface CompleteUserMediaMultipartUploadRequestBody {\n key: string\n parts: MultipartUploadPart[]\n uploadId: string\n}\n\nexport interface CompleteUserMediaMultipartUploadResponseBody {\n userMedia: UserMedia\n}\n\nexport interface GetMediaPathParameters {\n mediaId: string\n}\n\nexport interface GetMediaResponseBody {\n userMedia: UserMedia\n}\n\nexport interface LinkMediaToAssetPathParameters {\n assetId: string\n mediaId: string\n}\n\nexport interface LinkMediaToAssetResponseBody {\n userMedia: UserMedia\n}\n\nexport interface LinkMediaToProjectPathParameters {\n mediaId: string\n projectId: string\n}\n\nexport interface LinkMediaToProjectResponseBody {\n userMedia: UserMedia\n}\n\nexport interface LinkMediaToScanPathParameters {\n mediaId: string\n scanId: string\n}\n\nexport interface LinkMediaToScanResponseBody {\n userMedia: UserMedia\n}\n\nexport interface LinkMediasPathParameters {}\n\nexport interface LinkMediasRequestBody {\n accountId: string\n assetId?: string | null\n mediaIds: Array<any>\n projectId?: string | null\n scanId?: string | null\n}\n\nexport interface LinkMediasResponseBody {}\n\nexport interface UnlinkMediaToAssetPathParameters {\n assetId: string\n mediaId: string\n}\n\nexport interface UnlinkMediaToAssetResponseBody {}\n\nexport interface UnlinkMediaToProjectPathParameters {\n mediaId: string\n projectId: string\n}\n\nexport interface UnlinkMediaToProjectResponseBody {}\n\nexport interface UnlinkMediaToScanPathParameters {\n mediaId: string\n scanId: string\n}\n\nexport interface UnlinkMediaToScanResponseBody {\n userMedia: UserMedia\n}\n\nexport interface UnlinkMediasPathParameters {}\n\nexport interface UnlinkMediasRequestBody {\n accountId: string\n mediaIds: Array<any>\n unlinkFrom: string\n}\n\nexport interface UnlinkMediasResponseBody {}\n\nexport interface UpdateMediaPathParameters {\n mediaId: string\n}\n\nexport interface UpdateMediaRequestBody {\n category?: string | null\n}\n\nexport interface UpdateMediaResponseBody {\n userMedia: UserMedia\n}\n\nexport interface GetUserRolesResponseBody {\n userRoles: UserRole[]\n}\n\nexport interface CreateAccountByUserIdPathParameters {\n userId: string\n}\n\nexport interface CreateAccountByUserIdRequestBody {\n companyName?: string | null\n}\n\nexport interface CreateAccountByUserIdResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface GetAccountsByUserIdPathParameters {\n userId: string\n}\n\nexport interface GetAccountsByUserIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAccountsByUserIdResponseBody {\n accounts: AccountResponse[]\n lastKey?: string | null\n numberOfAccounts: number\n userId: string\n}\n\nexport interface GetErrorsByUserIdPathParameters {\n userId: string\n}\n\nexport interface GetErrorsByUserIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetErrorsByUserIdResponseBody {\n errors: Response[]\n lastKey?: string | null\n numberOfErrors: number\n userId: string\n}\n\nexport interface GetInvitationsByUserIdPathParameters {\n userId: string\n}\n\nexport interface GetInvitationsByUserIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetInvitationsByUserIdResponseBody {\n accountInvitations: AccountInvitation[]\n lastKey?: string | null\n numberOfInvitations: number\n userId: string\n}\n\nexport interface GetUserPathParameters {\n userId: string\n}\n\nexport interface GetUserResponseBody extends User {\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface GetUserSettingsByUserIdPathParameters {\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface GetUserSettingsByUserIdResponseBody extends UserSettings {\n created?: string | Date | number | null\n lastSelectedAccountId?: string | null\n modified?: string | Date | number | null\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface SetUserSettingsByUserIdPathParameters {\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface SetUserSettingsByUserIdRequestBody {\n lastSelectedAccountId: string\n}\n\nexport interface SetUserSettingsByUserIdResponseBody extends UserSettings {\n created?: string | Date | number | null\n lastSelectedAccountId?: string | null\n modified?: string | Date | number | null\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface UpdateUserPathParameters {\n userId: string\n}\n\nexport interface UpdateUserRequestBody {\n firstName?: string | null\n lastName?: string | null\n middleName?: string | null\n}\n\nexport interface UpdateUserResponseBody extends User {\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface ExportJobResolutionRequestBody {\n code: string\n data: NestedKeyValueObject\n jobObject: NestedKeyValueObject\n jobStatus: string\n}\n\nexport interface ExportJobResolutionResponseBody {\n job: Job\n}\n\nexport interface StripeEventRequestBody {\n created: string\n data: NestedKeyValueObject\n id: string\n livemode: boolean\n object: string\n pending_webhooks: number\n request: NestedKeyValueObject\n type: string\n}\n\nexport interface CreateSessionActionsPathParameters {\n sessionId: string\n}\n\nexport interface CreateSessionActionsRequestBody {\n scanId?: string | null\n sessionActions: RequestSessionAction[]\n}\n\nexport interface CreateSessionActionsResponseBody {\n session: ResponseSession\n}\n\nexport interface GetWebSessionPathParameters {\n sessionId: string\n}\n\nexport interface GetWebSessionQueryStringParameters {\n ascending?: boolean | null\n getLastSessionAction?: boolean | null\n getSessionActions?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n}\n\nexport interface GetWebSessionResponseBody {\n session: ResponseSession\n}\n\nexport interface UpdateWebSessionPathParameters {\n sessionId: string\n}\n\nexport interface UpdateWebSessionRequestBody {\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n tags?: Array<any> | null\n}\n\nexport interface UpdateWebSessionResponseBody {\n session: WebSession\n}\n\nexport interface ChangePasswordRequestBody {\n newPassword: string\n password?: string | null\n}\n\nexport interface ChangePasswordUserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface CheckSessionResponseBody {\n authenticated: boolean\n expires?: string | Date | number | null\n scope?: AuthTokenScope | null\n user?: User | null\n userId?: string | null\n}\n\nexport interface ConfirmQueryStringParameters {\n planName?: string | null\n t: string\n}\n\nexport interface ConfirmInvitedQueryStringParameters {\n t: string\n}\n\nexport interface CreateUserRequestBody {\n companyName?: string | null\n email: string\n firstName?: string | null\n groups?: string | null\n lastName?: string | null\n middleName?: string | null\n password: string\n pricePlanName?: string | null\n}\n\nexport interface GetSessionUserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface DeleteSessionUserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface RefreshSessionUserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface ResendConfirmationRequestBody {\n email: string\n pricePlanName?: string | null\n}\n\nexport interface ResetPasswordRequestBody {\n email: string\n}\n\nexport interface SamlAcsPathParameters {\n companyName?: string | null\n}\n\nexport interface SignOnPathParameters {\n companyName?: string | null\n}\n\nexport interface SignOnResponseBody {\n redirectUrl: string\n}\n\n// HANDLER REQUEST CLASSES\n\nexport class GetAccountAccessDataRequest extends RequestGet<\n GetAccountAccessDataPathParameters,\n undefined,\n GetAccountAccessDataResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'userId', routePart: 'users', sdkPartName: 'user'},\n {routePart: 'confirm', sdkPartName: 'confirm'},\n ]\n}\n\nexport class CheckUrlSafetyByAccountIdRequest extends RequestPost<\n CheckUrlSafetyByAccountIdPathParameters,\n undefined,\n CheckUrlSafetyByAccountIdRequestBody,\n CheckUrlSafetyByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'urlSafeties', sdkPartName: 'urlSafeties'},\n ]\n}\n\nexport class CreateApiKeyByAccountIdRequest extends RequestPost<\n CreateApiKeyByAccountIdPathParameters,\n undefined,\n CreateApiKeyByAccountIdRequestBody,\n CreateApiKeyByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'apikeys', sdkPartName: 'apikeys'},\n ]\n}\n\nexport class CreateAppRequest extends RequestPost<\n CreateAppPathParameters,\n undefined,\n CreateAppRequestBody,\n CreateAppResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'apps', sdkPartName: 'apps'},\n ]\n}\n\nexport class CreateAssetTypeByAccountIdRequest extends RequestPost<\n CreateAssetTypeByAccountIdPathParameters,\n undefined,\n CreateAssetTypeByAccountIdRequestBody,\n CreateAssetTypeByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'assettypes', sdkPartName: 'assettypes'},\n ]\n}\n\nexport class CreateCustomDomainByAccountIdRequest extends RequestPost<\n CreateCustomDomainByAccountIdPathParameters,\n undefined,\n CreateCustomDomainByAccountIdRequestBody,\n CreateCustomDomainByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'customDomains', sdkPartName: 'customDomains'},\n ]\n}\n\nexport class CreateImageUploadPresignedUrlRequest extends RequestPost<\n CreateImageUploadPresignedUrlPathParameters,\n undefined,\n CreateImageUploadPresignedUrlRequestBody,\n CreateImageUploadPresignedUrlResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'image/upload', sdkPartName: 'imageUpload'},\n ]\n}\n\nexport class CreateInvitationByAccountIdRequest extends RequestPost<\n CreateInvitationByAccountIdPathParameters,\n undefined,\n CreateInvitationByAccountIdRequestBody,\n CreateInvitationByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'invitations', sdkPartName: 'invitations'},\n ]\n}\n\nexport class CreateInvitationsByAccountIdRequest extends RequestPost<\n CreateInvitationsByAccountIdPathParameters,\n undefined,\n CreateInvitationsByAccountIdRequestBody,\n CreateInvitationsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'invitations/batch', sdkPartName: 'invitationsBatch'},\n ]\n}\n\nexport class CreateLocationByAccountIdRequest extends RequestPost<\n CreateLocationByAccountIdPathParameters,\n undefined,\n CreateLocationByAccountIdRequestBody,\n CreateLocationByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'locations', sdkPartName: 'locations'},\n ]\n}\n\nexport class CreatePrintPageTemplateByAccountIdRequest extends RequestPost<\n CreatePrintPageTemplateByAccountIdPathParameters,\n undefined,\n CreatePrintPageTemplateByAccountIdRequestBody,\n CreatePrintPageTemplateByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'printPageTemplates', sdkPartName: 'printPageTemplates'},\n ]\n}\n\nexport class CreatePrintStickerTemplateByAccountIdRequest extends RequestPost<\n CreatePrintStickerTemplateByAccountIdPathParameters,\n undefined,\n CreatePrintStickerTemplateByAccountIdRequestBody,\n CreatePrintStickerTemplateByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'printStickerTemplates', sdkPartName: 'printStickerTemplates'},\n ]\n}\n\nexport class CreateProjectByAccountIdRequest extends RequestPost<\n CreateProjectByAccountIdPathParameters,\n undefined,\n CreateProjectByAccountIdRequestBody,\n CreateProjectByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'projects', sdkPartName: 'projects'},\n ]\n}\n\nexport class CreateQrCodeLogoByAccountRequest extends RequestPost<\n CreateQrCodeLogoByAccountPathParameters,\n undefined,\n CreateQrCodeLogoByAccountRequestBody,\n CreateQrCodeLogoByAccountResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'qrcodelogos', sdkPartName: 'qrcodelogos'},\n ]\n}\n\nexport class CreateQrCodeStylingTemplateByAccountRequest extends RequestPost<\n CreateQrCodeStylingTemplateByAccountPathParameters,\n undefined,\n CreateQrCodeStylingTemplateByAccountRequestBody,\n CreateQrCodeStylingTemplateByAccountResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'stylingtemplates', sdkPartName: 'stylingtemplates'},\n ]\n}\n\nexport class CreateQueryableCustomAttributeRequest extends RequestPost<\n CreateQueryableCustomAttributePathParameters,\n undefined,\n CreateQueryableCustomAttributeRequestBody,\n CreateQueryableCustomAttributeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'account', sdkPartName: 'account'},\n {routePart: 'customattributes', sdkPartName: 'customattributes'},\n ]\n}\n\nexport class CreateSamlConfigurationRequest extends RequestPost<\n CreateSamlConfigurationPathParameters,\n undefined,\n CreateSamlConfigurationRequestBody,\n CreateSamlConfigurationResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'SSOConfiguration', sdkPartName: 'SSOConfiguration'},\n ]\n}\n\nexport class CreateTicketByAccountIdRequest extends RequestPost<\n CreateTicketByAccountIdPathParameters,\n undefined,\n CreateTicketByAccountIdRequestBody,\n undefined\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'zendeskTicket', sdkPartName: 'zendeskTicket'},\n ]\n}\n\nexport class CreateUserMediaMultipartPresignedUrlByAccountIdRequest extends RequestPost<\n CreateUserMediaMultipartPresignedUrlByAccountIdPathParameters,\n undefined,\n CreateUserMediaMultipartPresignedUrlByAccountIdRequestBody,\n CreateUserMediaMultipartPresignedUrlByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'usermedias/presignedurlmultipart', sdkPartName: 'usermediasPresignedurlmultipart'},\n ]\n}\n\nexport class CreateUserMediaPresignedUrlByAccountIdRequest extends RequestPost<\n CreateUserMediaPresignedUrlByAccountIdPathParameters,\n undefined,\n CreateUserMediaPresignedUrlByAccountIdRequestBody,\n CreateUserMediaPresignedUrlByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'usermedias/presignedurl', sdkPartName: 'usermediasPresignedurl'},\n ]\n}\n\nexport class CreateWebSessionExportByAccountIdRequest extends RequestPost<\n CreateWebSessionExportByAccountIdPathParameters,\n undefined,\n CreateWebSessionExportByAccountIdRequestBody,\n CreateWebSessionExportByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'websessions/export', sdkPartName: 'websessionsExport'},\n ]\n}\n\nexport class DeleteContactsByAccountIdRequest extends RequestDelete<\n DeleteContactsByAccountIdPathParameters,\n DeleteContactsByAccountIdQueryStringParameters,\n DeleteContactsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'contacts/batch', sdkPartName: 'contactsBatch'},\n ]\n}\n\nexport class DeleteUserByAccountIdRequest extends RequestDelete<\n DeleteUserByAccountIdPathParameters,\n undefined,\n undefined\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'userId', routePart: 'users', sdkPartName: 'user'},\n ]\n}\n\nexport class EnablePluginByAccountIdRequest extends RequestPatch<\n EnablePluginByAccountIdPathParameters,\n undefined,\n undefined,\n undefined\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'pluginId', routePart: 'plugins', sdkPartName: 'plugin'},\n ]\n}\n\nexport class GetAccountRequest extends RequestGet<GetAccountPathParameters, undefined, GetAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'}]\n}\n\nexport class GetCustomDomainRequest extends RequestGet<\n GetCustomDomainPathParameters,\n undefined,\n GetCustomDomainResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'customDomain', routePart: 'customDomains', sdkPartName: 'customDomain'},\n ]\n}\n\nexport class GetAccountPluginPasswordRequest extends RequestGet<\n GetAccountPluginPasswordPathParameters,\n undefined,\n GetAccountPluginPasswordResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'pluginId', routePart: 'plugins', sdkPartName: 'plugin'},\n {routePart: 'password', sdkPartName: 'password'},\n ]\n}\n\nexport class GetAdvancedAssetReportByAccountIdRequest extends RequestGet<\n GetAdvancedAssetReportByAccountIdPathParameters,\n GetAdvancedAssetReportByAccountIdQueryStringParameters,\n GetAdvancedAssetReportByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'assets/report/advanced', sdkPartName: 'advancedAssetsReport'},\n ]\n}\n\nexport class GetAdvancedContactReportByAccountIdRequest extends RequestGet<\n GetAdvancedContactReportByAccountIdPathParameters,\n GetAdvancedContactReportByAccountIdQueryStringParameters,\n GetAdvancedContactReportByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'contacts/report/advanced', sdkPartName: 'advancedContactsReport'},\n ]\n}\n\nexport class GetAdvancedScanReportByAccountIdRequest extends RequestGet<\n GetAdvancedScanReportByAccountIdPathParameters,\n GetAdvancedScanReportByAccountIdQueryStringParameters,\n GetAdvancedScanReportByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'scans/report/advanced', sdkPartName: 'advancedScansReport'},\n ]\n}\n\nexport class GetAllAppsByAccountIdRequest extends RequestGet<\n GetAllAppsByAccountIdPathParameters,\n GetAllAppsByAccountIdQueryStringParameters,\n GetAllAppsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'owner/apps', sdkPartName: 'ownerApps'},\n ]\n}\n\nexport class GetApiKeysByAccountIdRequest extends RequestGet<\n GetApiKeysByAccountIdPathParameters,\n GetApiKeysByAccountIdQueryStringParameters,\n GetApiKeysByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'apikeys', sdkPartName: 'apikeys'},\n ]\n}\n\nexport class GetAssetExportByAccountIdRequest extends RequestPost<\n GetAssetExportByAccountIdPathParameters,\n undefined,\n GetAssetExportByAccountIdRequestBody,\n GetAssetExportByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'assets/export', sdkPartName: 'assetsExport'},\n ]\n}\n\nexport class GetAssetGraphsByAccountIdRequest extends RequestGet<\n GetAssetGraphsByAccountIdPathParameters,\n GetAssetGraphsByAccountIdQueryStringParameters,\n GetAssetGraphsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'assetgraphs', sdkPartName: 'assetgraphs'},\n ]\n}\n\nexport class GetAssetTypesByAccountIdRequest extends RequestGet<\n GetAssetTypesByAccountIdPathParameters,\n GetAssetTypesByAccountIdQueryStringParameters,\n GetAssetTypesByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'assettypes', sdkPartName: 'assettypes'},\n ]\n}\n\nexport class GetAssetsByAccountIdRequest extends RequestGet<\n GetAssetsByAccountIdPathParameters,\n GetAssetsByAccountIdQueryStringParameters,\n GetAssetsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'assets', sdkPartName: 'assets'},\n ]\n}\n\nexport class GetBasicAssetReportByAccountIdRequest extends RequestGet<\n GetBasicAssetReportByAccountIdPathParameters,\n undefined,\n GetBasicAssetReportByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'assets/report/basic', sdkPartName: 'basicAssetsReport'},\n ]\n}\n\nexport class GetBasicContactReportByAccountIdRequest extends RequestGet<\n GetBasicContactReportByAccountIdPathParameters,\n undefined,\n GetBasicContactReportByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'contacts/report/basic', sdkPartName: 'basicContactsReport'},\n ]\n}\n\nexport class GetBatchesByAccountIdRequest extends RequestGet<\n GetBatchesByAccountIdPathParameters,\n GetBatchesByAccountIdQueryStringParameters,\n GetBatchesByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'account', sdkPartName: 'account'},\n {routePart: 'batch', sdkPartName: 'batch'},\n ]\n}\n\nexport class GetConsentByAccountIdRequest extends RequestGet<\n GetConsentByAccountIdPathParameters,\n GetConsentByAccountIdQueryStringParameters,\n GetConsentByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'consent', sdkPartName: 'consent'},\n ]\n}\n\nexport class GetContactExportByAccountIdRequest extends RequestPost<\n GetContactExportByAccountIdPathParameters,\n undefined,\n GetContactExportByAccountIdRequestBody,\n GetContactExportByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'contacts/export', sdkPartName: 'contactsExport'},\n ]\n}\n\nexport class GetContactsByAccountIdRequest extends RequestGet<\n GetContactsByAccountIdPathParameters,\n GetContactsByAccountIdQueryStringParameters,\n GetContactsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'contacts', sdkPartName: 'contacts'},\n ]\n}\n\nexport class GetDecryptedKlaviyoKeyRequest extends RequestGet<\n GetDecryptedKlaviyoKeyPathParameters,\n undefined,\n GetDecryptedKlaviyoKeyResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'pluginId', routePart: 'plugins', sdkPartName: 'plugin'},\n {routePart: 'klaviyo/key', sdkPartName: 'klaviyoKey'},\n ]\n}\n\nexport class GetDomainsByAccountIdRequest extends RequestGet<\n GetDomainsByAccountIdPathParameters,\n GetDomainsByAccountIdQueryStringParameters,\n GetDomainsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'customDomains', sdkPartName: 'customDomains'},\n ]\n}\n\nexport class GetInstalledAppsByAccountIdRequest extends RequestGet<\n GetInstalledAppsByAccountIdPathParameters,\n GetInstalledAppsByAccountIdQueryStringParameters,\n GetInstalledAppsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'apps', sdkPartName: 'apps'},\n ]\n}\n\nexport class GetJobsByAccountIdRequest extends RequestGet<\n GetJobsByAccountIdPathParameters,\n GetJobsByAccountIdQueryStringParameters,\n GetJobsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'jobs', sdkPartName: 'jobs'},\n ]\n}\n\nexport class GetLocationsByAccountIdRequest extends RequestGet<\n GetLocationsByAccountIdPathParameters,\n GetLocationsByAccountIdQueryStringParameters,\n GetLocationsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'locations', sdkPartName: 'locations'},\n ]\n}\n\nexport class GetMostScannedAssetsByAccountIdRequest extends RequestGet<\n GetMostScannedAssetsByAccountIdPathParameters,\n GetMostScannedAssetsByAccountIdQueryStringParameters,\n GetMostScannedAssetsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'assets/mostscanned', sdkPartName: 'assetsMostscanned'},\n ]\n}\n\nexport class GetPluginsByAccountIdRequest extends RequestGet<\n GetPluginsByAccountIdPathParameters,\n undefined,\n GetPluginsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'plugins', sdkPartName: 'plugins'},\n ]\n}\n\nexport class GetPricePlanByAccountIdRequest extends RequestGet<\n GetPricePlanByAccountIdPathParameters,\n undefined,\n GetPricePlanByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'priceplan', sdkPartName: 'pricePlan'},\n ]\n}\n\nexport class GetPrintJobsByAccountIdRequest extends RequestGet<\n GetPrintJobsByAccountIdPathParameters,\n GetPrintJobsByAccountIdQueryStringParameters,\n GetPrintJobsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'printJobs', sdkPartName: 'printJobs'},\n ]\n}\n\nexport class GetPrintPageTemplatesByAccountIdRequest extends RequestGet<\n GetPrintPageTemplatesByAccountIdPathParameters,\n GetPrintPageTemplatesByAccountIdQueryStringParameters,\n GetPrintPageTemplatesByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'printPageTemplates', sdkPartName: 'printPageTemplates'},\n ]\n}\n\nexport class GetPrintStickerTemplatesByAccountIdRequest extends RequestGet<\n GetPrintStickerTemplatesByAccountIdPathParameters,\n GetPrintStickerTemplatesByAccountIdQueryStringParameters,\n GetPrintStickerTemplatesByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'printStickerTemplates', sdkPartName: 'printStickerTemplates'},\n ]\n}\n\nexport class GetProjectsByAccountIdRequest extends RequestGet<\n GetProjectsByAccountIdPathParameters,\n GetProjectsByAccountIdQueryStringParameters,\n GetProjectsByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'projects', sdkPartName: 'projects'},\n ]\n}\n\nexport class GetQrCodeLogosByAccountIdRequest extends RequestGet<\n GetQrCodeLogosByAccountIdPathParameters,\n GetQrCodeLogosByAccountIdQueryStringParameters,\n GetQrCodeLogosByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'qrcodelogos', sdkPartName: 'qrcodelogos'},\n ]\n}\n\nexport class GetQrcodeScansExportByAccountIdRequest extends RequestPost<\n GetQrcodeScansExportByAccountIdPathParameters,\n undefined,\n GetQrcodeScansExportByAccountIdRequestBody,\n GetQrcodeScansExportByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'qrcodes/scans/export', sdkPartName: 'exportQrCodesScans'},\n ]\n}\n\nexport class GetQrCodeStylingTemplatesByAccountIdRequest extends RequestGet<\n GetQrCodeStylingTemplatesByAccountIdPathParameters,\n GetQrCodeStylingTemplatesByAccountIdQueryStringParameters,\n GetQrCodeStylingTemplatesByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'stylingtemplates', sdkPartName: 'stylingtemplates'},\n ]\n}\n\nexport class GetQrCodesByAccountIdRequest extends RequestGet<\n GetQrCodesByAccountIdPathParameters,\n GetQrCodesByAccountIdQueryStringParameters,\n GetQrCodesByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'qrcodes', sdkPartName: 'qrCodes'},\n ]\n}\n\nexport class GetQueryableCustomAttributeRequest extends RequestGet<\n GetQueryableCustomAttributePathParameters,\n GetQueryableCustomAttributeQueryStringParameters,\n GetQueryableCustomAttributeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'account', sdkPartName: 'account'},\n {routePart: 'customattributes', sdkPartName: 'customattributes'},\n ]\n}\n\nexport class GetScanDayOfWeekByAccountIdRequest extends RequestGet<\n GetScanDayOfWeekByAccountIdPathParameters,\n GetScanDayOfWeekByAccountIdQueryStringParameters,\n GetScanDayOfWeekByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'scans/dayofweek', sdkPartName: 'scansDayofweek'},\n ]\n}\n\nexport class GetScanExportByAccountIdRequest extends RequestPost<\n GetScanExportByAccountIdPathParameters,\n undefined,\n GetScanExportByAccountIdRequestBody,\n GetScanExportByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'scans/export', sdkPartName: 'scansExport'},\n ]\n}\n\nexport class GetScanTimeOfDayByAccountIdRequest extends RequestGet<\n GetScanTimeOfDayByAccountIdPathParameters,\n GetScanTimeOfDayByAccountIdQueryStringParameters,\n GetScanTimeOfDayByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'scans/timeofday', sdkPartName: 'scansTimeofday'},\n ]\n}\n\nexport class GetScanTimelineByAccountIdRequest extends RequestGet<\n GetScanTimelineByAccountIdPathParameters,\n GetScanTimelineByAccountIdQueryStringParameters,\n GetScanTimelineByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'scans/timeline', sdkPartName: 'scansTimeline'},\n ]\n}\n\nexport class GetScansByAccountIdRequest extends RequestGet<\n GetScansByAccountIdPathParameters,\n GetScansByAccountIdQueryStringParameters,\n GetScansByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'scans', sdkPartName: 'scans'},\n ]\n}\n\nexport class GetUserByAccountIdRequest extends RequestGet<\n GetUserByAccountIdPathParameters,\n undefined,\n GetUserByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'userId', routePart: 'users', sdkPartName: 'user'},\n ]\n}\n\nexport class GetUserMediasByAccountIdRequest extends RequestGet<\n GetUserMediasByAccountIdPathParameters,\n GetUserMediasByAccountIdQueryStringParameters,\n GetUserMediasByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'usermedias', sdkPartName: 'usermedias'},\n ]\n}\n\nexport class GetUsersByAccountIdRequest extends RequestGet<\n GetUsersByAccountIdPathParameters,\n GetUsersByAccountIdQueryStringParameters,\n GetUsersByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'users', sdkPartName: 'users'},\n ]\n}\n\nexport class GetUsersRolesByAccountIdRequest extends RequestGet<\n GetUsersRolesByAccountIdPathParameters,\n undefined,\n GetUsersRolesByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'userId', routePart: 'users', sdkPartName: 'user'},\n {routePart: 'roles', sdkPartName: 'roles'},\n ]\n}\n\nexport class GetWebSessionsTimelineByAccountIdRequest extends RequestGet<\n GetWebSessionsTimelineByAccountIdPathParameters,\n GetWebSessionsTimelineByAccountIdQueryStringParameters,\n GetWebSessionsTimelineByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'websessions/timeline', sdkPartName: 'websessionsTimeline'},\n ]\n}\n\nexport class InstallAppToAccountRequest extends RequestPost<\n InstallAppToAccountPathParameters,\n undefined,\n undefined,\n InstallAppToAccountResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'appId', routePart: 'apps', sdkPartName: 'app'},\n {routePart: 'install', sdkPartName: 'install'},\n ]\n}\n\nexport class RetrieveCampaignStatusByAccountIdRequest extends RequestGet<\n RetrieveCampaignStatusByAccountIdPathParameters,\n undefined,\n RetrieveCampaignStatusByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'campaignInformation', sdkPartName: 'campaignInformation'},\n ]\n}\n\nexport class CreateCampaignAccountByAccountIdRequest extends RequestPost<\n CreateCampaignAccountByAccountIdPathParameters,\n undefined,\n CreateCampaignAccountByAccountIdRequestBody,\n CreateCampaignAccountByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'campaignInformation', sdkPartName: 'campaignInformation'},\n ]\n}\n\nexport class AdvanceStripeClockByAccountIdRequest extends RequestPost<\n AdvanceStripeClockByAccountIdPathParameters,\n undefined,\n AdvanceStripeClockByAccountIdRequestBody,\n AdvanceStripeClockByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'clock', sdkPartName: 'clock'},\n ]\n}\n\nexport class TestDomainConnectionRequest extends RequestPatch<\n TestDomainConnectionPathParameters,\n undefined,\n undefined,\n TestDomainConnectionResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'customDomain', routePart: 'customDomains', sdkPartName: 'customDomain'},\n {routePart: 'test', sdkPartName: 'test'},\n ]\n}\n\nexport class UpdateAccountRequest extends RequestPatch<\n UpdateAccountPathParameters,\n undefined,\n UpdateAccountRequestBody,\n UpdateAccountResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'}]\n}\n\nexport class UpdateKlaviyoAccountPluginRequest extends RequestPatch<\n UpdateKlaviyoAccountPluginPathParameters,\n undefined,\n UpdateKlaviyoAccountPluginRequestBody,\n UpdateKlaviyoAccountPluginResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'pluginId', routePart: 'plugins', sdkPartName: 'plugin'},\n {routePart: 'klaviyo', sdkPartName: 'klaviyo'},\n ]\n}\n\nexport class UpdateEngagePricePlanRequest extends RequestPatch<\n UpdateEngagePricePlanPathParameters,\n undefined,\n UpdateEngagePricePlanRequestBody,\n UpdateEngagePricePlanResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'engagePricePlan', sdkPartName: 'engagePricePlan'},\n ]\n}\n\nexport class UpdatePricePlanByAccountIdRequest extends RequestPatch<\n UpdatePricePlanByAccountIdPathParameters,\n undefined,\n UpdatePricePlanByAccountIdRequestBody,\n UpdatePricePlanByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'priceplan', sdkPartName: 'pricePlan'},\n ]\n}\n\nexport class UpdateRehrigAccountPluginRequest extends RequestPatch<\n UpdateRehrigAccountPluginPathParameters,\n undefined,\n UpdateRehrigAccountPluginRequestBody,\n UpdateRehrigAccountPluginResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'pluginId', routePart: 'plugins', sdkPartName: 'plugin'},\n {routePart: 'rehrig', sdkPartName: 'rehrig'},\n ]\n}\n\nexport class UpdateUserByAccountIdRequest extends RequestPatch<\n UpdateUserByAccountIdPathParameters,\n undefined,\n UpdateUserByAccountIdRequestBody,\n UpdateUserByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'userId', routePart: 'users', sdkPartName: 'user'},\n ]\n}\n\nexport class UpdateUsersRolesByAccountIdRequest extends RequestPatch<\n UpdateUsersRolesByAccountIdPathParameters,\n undefined,\n UpdateUsersRolesByAccountIdRequestBody,\n UpdateUsersRolesByAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {parm: 'userId', routePart: 'users', sdkPartName: 'user'},\n {routePart: 'roles', sdkPartName: 'roles'},\n ]\n}\n\nexport class UploadQrCodeLogoByAccountRequest extends RequestPost<\n UploadQrCodeLogoByAccountPathParameters,\n undefined,\n UploadQrCodeLogoByAccountRequestBody,\n UploadQrCodeLogoByAccountResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'qrcodelogos/upload', sdkPartName: 'qrcodelogosUpload'},\n ]\n}\n\nexport class GetApiKeyRequest extends RequestGet<GetApiKeyPathParameters, undefined, GetApiKeyResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'apiKeyId', routePart: 'apikeys', sdkPartName: 'apikey'}]\n}\n\nexport class GetApiKeySecretRequest extends RequestGet<\n GetApiKeySecretPathParameters,\n undefined,\n GetApiKeySecretResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'apiKeyId', routePart: 'apikeys', sdkPartName: 'apikey'},\n {routePart: 'secret', sdkPartName: 'secret'},\n ]\n}\n\nexport class ResetApiKeySecretRequest extends RequestPatch<\n ResetApiKeySecretPathParameters,\n undefined,\n undefined,\n ResetApiKeySecretResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'apiKeyId', routePart: 'apikeys', sdkPartName: 'apikey'},\n {routePart: 'secret', sdkPartName: 'secret'},\n ]\n}\n\nexport class UpdateApiKeyRequest extends RequestPatch<\n UpdateApiKeyPathParameters,\n undefined,\n UpdateApiKeyRequestBody,\n UpdateApiKeyResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'apiKeyId', routePart: 'apikeys', sdkPartName: 'apikey'}]\n}\n\nexport class GetAppByAppIdRequest extends RequestGet<\n GetAppByAppIdPathParameters,\n undefined,\n GetAppByAppIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'appId', routePart: 'apps', sdkPartName: 'app'}]\n}\n\nexport class GetAppsRequest extends RequestGet<undefined, GetAppsQueryStringParameters, GetAppsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'apps', sdkPartName: 'apps'}]\n}\n\nexport class GetPublishedAppsRequest extends RequestGet<\n undefined,\n GetPublishedAppsQueryStringParameters,\n GetPublishedAppsResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'apps/published', sdkPartName: 'appsPublished'}]\n}\n\nexport class LoadAppRequest extends RequestPost<LoadAppPathParameters, undefined, undefined, LoadAppResponseBody> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'appId', routePart: 'apps', sdkPartName: 'app'},\n {parm: 'accountId', routePart: 'accounts', sdkPartName: 'account'},\n {routePart: 'load', sdkPartName: 'load'},\n ]\n}\n\nexport class UpdateAppByAppIdRequest extends RequestPatch<\n UpdateAppByAppIdPathParameters,\n undefined,\n UpdateAppByAppIdRequestBody,\n UpdateAppByAppIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'appId', routePart: 'apps', sdkPartName: 'app'}]\n}\n\nexport class GetAppAccountByAppAccountIdRequest extends RequestGet<\n GetAppAccountByAppAccountIdPathParameters,\n undefined,\n GetAppAccountByAppAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'appAccountId', routePart: 'appsAccounts', sdkPartName: 'appsAccount'},\n ]\n}\n\nexport class GetMainAccountByAppAccountIdRequest extends RequestGet<\n GetMainAccountByAppAccountIdPathParameters,\n undefined,\n GetMainAccountByAppAccountIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'appAccountId', routePart: 'appsAccounts', sdkPartName: 'appsAccount'},\n {routePart: 'main', sdkPartName: 'main'},\n ]\n}\n\nexport class DeleteAssetGraphRequest extends RequestDelete<DeleteAssetGraphPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'assetGraphId', routePart: 'assetgraphs', sdkPartName: 'assetgraph'}]\n}\n\nexport class GetAssetGraphRequest extends RequestGet<\n GetAssetGraphPathParameters,\n undefined,\n GetAssetGraphResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'assetGraphId', routePart: 'assetgraphs', sdkPartName: 'assetgraph'}]\n}\n\nexport class UpdateAssetGraphRequest extends RequestPatch<\n UpdateAssetGraphPathParameters,\n undefined,\n UpdateAssetGraphRequestBody,\n UpdateAssetGraphResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'assetGraphId', routePart: 'assetgraphs', sdkPartName: 'assetgraph'}]\n}\n\nexport class ComposeAssetByAssetTypeRequest extends RequestPost<\n ComposeAssetByAssetTypePathParameters,\n undefined,\n ComposeAssetByAssetTypeRequestBody,\n ComposeAssetByAssetTypeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetTypeId', routePart: 'assettypes', sdkPartName: 'assettype'},\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n ]\n}\n\nexport class CreateAssetByAssetTypeRequest extends RequestPost<\n CreateAssetByAssetTypePathParameters,\n undefined,\n CreateAssetByAssetTypeRequestBody,\n CreateAssetByAssetTypeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetTypeId', routePart: 'assettypes', sdkPartName: 'assettype'},\n {routePart: 'assets', sdkPartName: 'assets'},\n ]\n}\n\nexport class DeleteAssetTypeRequest extends RequestDelete<\n DeleteAssetTypePathParameters,\n undefined,\n DeleteAssetTypeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'assetTypeId', routePart: 'assettypes', sdkPartName: 'assettype'}]\n}\n\nexport class GetAssetTypeByAssetTypeIdRequest extends RequestGet<\n GetAssetTypeByAssetTypeIdPathParameters,\n GetAssetTypeByAssetTypeIdQueryStringParameters,\n GetAssetTypeByAssetTypeIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'assetTypeId', routePart: 'assettypes', sdkPartName: 'assettype'}]\n}\n\nexport class GetAssetTypeCountAtLocationRequest extends RequestGet<\n GetAssetTypeCountAtLocationPathParameters,\n undefined,\n GetAssetTypeCountAtLocationResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetTypeId', routePart: 'assettypes', sdkPartName: 'assettype'},\n {parm: 'locationId', routePart: 'locations', sdkPartName: 'location'},\n ]\n}\n\nexport class GetAssetsByAssetTypeRequest extends RequestGet<\n GetAssetsByAssetTypePathParameters,\n GetAssetsByAssetTypeQueryStringParameters,\n GetAssetsByAssetTypeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetTypeId', routePart: 'assettypes', sdkPartName: 'assettype'},\n {routePart: 'assets', sdkPartName: 'assets'},\n ]\n}\n\nexport class GetAssetTypeCountsByLocationRequest extends RequestGet<\n GetAssetTypeCountsByLocationPathParameters,\n GetAssetTypeCountsByLocationQueryStringParameters,\n GetAssetTypeCountsByLocationResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetTypeId', routePart: 'assettypes', sdkPartName: 'assettype'},\n {routePart: 'locations', sdkPartName: 'locations'},\n ]\n}\n\nexport class UpdateAssetTypeRequest extends RequestPatch<\n UpdateAssetTypePathParameters,\n undefined,\n UpdateAssetTypeRequestBody,\n UpdateAssetTypeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'assetTypeId', routePart: 'assettypes', sdkPartName: 'assettype'}]\n}\n\nexport class UpdateAssetTypeCountAtLocationRequest extends RequestPatch<\n UpdateAssetTypeCountAtLocationPathParameters,\n undefined,\n UpdateAssetTypeCountAtLocationRequestBody,\n UpdateAssetTypeCountAtLocationResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetTypeId', routePart: 'assettypes', sdkPartName: 'assettype'},\n {parm: 'locationId', routePart: 'locations', sdkPartName: 'location'},\n ]\n}\n\nexport class CreateContactByAssetIdRequest extends RequestPost<\n CreateContactByAssetIdPathParameters,\n undefined,\n CreateContactByAssetIdRequestBody,\n CreateContactByAssetIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'contacts', sdkPartName: 'contacts'},\n ]\n}\n\nexport class CreateNeighborsByAssetIdRequest extends RequestPost<\n CreateNeighborsByAssetIdPathParameters,\n undefined,\n CreateNeighborsByAssetIdRequestBody,\n undefined\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'neighbors', sdkPartName: 'neighbors'},\n ]\n}\n\nexport class CreateQrCodeByAssetIdRequest extends RequestPost<\n CreateQrCodeByAssetIdPathParameters,\n undefined,\n CreateQrCodeByAssetIdRequestBody,\n CreateQrCodeByAssetIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'qrcodes', sdkPartName: 'qrCodes'},\n ]\n}\n\nexport class CreateQrCodesByAssetIdRequest extends RequestPost<\n CreateQrCodesByAssetIdPathParameters,\n undefined,\n CreateQrCodesByAssetIdRequestBody,\n CreateQrCodesByAssetIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'qrcodes', sdkPartName: 'qrCodes'},\n ]\n}\n\nexport class DeleteAssetRequest extends RequestDelete<DeleteAssetPathParameters, undefined, DeleteAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'}]\n}\n\nexport class DeleteNeighborsByAssetIdRequest extends RequestPost<\n DeleteNeighborsByAssetIdPathParameters,\n undefined,\n DeleteNeighborsByAssetIdRequestBody,\n undefined\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'neighbors/delete', sdkPartName: 'neighborsDelete'},\n ]\n}\n\nexport class GetAssetRequest extends RequestGet<\n GetAssetPathParameters,\n GetAssetQueryStringParameters,\n GetAssetResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'}]\n}\n\nexport class GetAssetHistoryRequest extends RequestGet<\n GetAssetHistoryPathParameters,\n GetAssetHistoryQueryStringParameters,\n GetAssetHistoryResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'history', sdkPartName: 'history'},\n ]\n}\n\nexport class GetContactsByAssetIdRequest extends RequestGet<\n GetContactsByAssetIdPathParameters,\n GetContactsByAssetIdQueryStringParameters,\n GetContactsByAssetIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'contacts', sdkPartName: 'contacts'},\n ]\n}\n\nexport class GetExternalNeighborScanCountByAssetIdRequest extends RequestGet<\n GetExternalNeighborScanCountByAssetIdPathParameters,\n GetExternalNeighborScanCountByAssetIdQueryStringParameters,\n GetExternalNeighborScanCountByAssetIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {parm: 'url', routePart: 'urls', sdkPartName: 'url'},\n ]\n}\n\nexport class GetNeighborScanCountByAssetIdRequest extends RequestGet<\n GetNeighborScanCountByAssetIdPathParameters,\n GetNeighborScanCountByAssetIdQueryStringParameters,\n GetNeighborScanCountByAssetIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {parm: 'neighborId', routePart: 'neighbors', sdkPartName: 'neighbor'},\n ]\n}\n\nexport class GetNeighborsByAssetIdRequest extends RequestGet<\n GetNeighborsByAssetIdPathParameters,\n GetNeighborsByAssetIdQueryStringParameters,\n GetNeighborsByAssetIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'neighbors', sdkPartName: 'neighbors'},\n ]\n}\n\nexport class GetQrCodesByAssetIdRequest extends RequestGet<\n GetQrCodesByAssetIdPathParameters,\n GetQrCodesByAssetIdQueryStringParameters,\n GetQrCodesByAssetIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'qrcodes', sdkPartName: 'qrCodes'},\n ]\n}\n\nexport class GetScanExportByAssetIdRequest extends RequestPost<\n GetScanExportByAssetIdPathParameters,\n undefined,\n GetScanExportByAssetIdRequestBody,\n GetScanExportByAssetIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'scans/export', sdkPartName: 'scansExport'},\n ]\n}\n\nexport class GetScanLocationDataByAssetIdRequest extends RequestGet<\n GetScanLocationDataByAssetIdPathParameters,\n GetScanLocationDataByAssetIdQueryStringParameters,\n GetScanLocationDataByAssetIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'scans/location', sdkPartName: 'scansLocation'},\n ]\n}\n\nexport class GetScansByAssetIdRequest extends RequestGet<\n GetScansByAssetIdPathParameters,\n GetScansByAssetIdQueryStringParameters,\n GetScansByAssetIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'scans', sdkPartName: 'scans'},\n ]\n}\n\nexport class GetUserMediasByAssetIdRequest extends RequestGet<\n GetUserMediasByAssetIdPathParameters,\n GetUserMediasByAssetIdQueryStringParameters,\n GetUserMediasByAssetIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {routePart: 'usermedias', sdkPartName: 'usermedias'},\n ]\n}\n\nexport class LinkContactToAssetRequest extends RequestPost<\n LinkContactToAssetPathParameters,\n undefined,\n LinkContactToAssetRequestBody,\n LinkContactToAssetResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'},\n ]\n}\n\nexport class UnlinkContactToAssetRequest extends RequestDelete<\n UnlinkContactToAssetPathParameters,\n undefined,\n undefined\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n {parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'},\n ]\n}\n\nexport class UpdateAssetRequest extends RequestPatch<\n UpdateAssetPathParameters,\n undefined,\n UpdateAssetRequestBody,\n UpdateAssetResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'}]\n}\n\nexport class GetAssetsByBatchIdRequest extends RequestGet<\n GetAssetsByBatchIdPathParameters,\n GetAssetsByBatchIdQueryStringParameters,\n GetAssetsByBatchIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'batchId', routePart: 'batch', sdkPartName: 'batch'},\n {routePart: 'assets', sdkPartName: 'assets'},\n ]\n}\n\nexport class CancelDowngradeRequestRequest extends RequestPost<\n CancelDowngradeRequestPathParameters,\n undefined,\n undefined,\n CancelDowngradeRequestResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'billing/cancelDowngrade', sdkPartName: 'billingCancelDowngrade'},\n ]\n}\n\nexport class CancelSubscriptionRequest extends RequestPost<\n CancelSubscriptionPathParameters,\n undefined,\n CancelSubscriptionRequestBody,\n CancelSubscriptionResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'billing/cancelSubscription', sdkPartName: 'billingCancelSubscription'},\n ]\n}\n\nexport class ChangeSubscriptionPreviewRequest extends RequestGet<\n ChangeSubscriptionPreviewPathParameters,\n ChangeSubscriptionPreviewQueryStringParameters,\n ChangeSubscriptionPreviewResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'billing/preview/upgradePlan', sdkPartName: 'upgradePlanBillingPreview'},\n ]\n}\n\nexport class CreateSetupIntentRequest extends RequestPost<\n CreateSetupIntentPathParameters,\n undefined,\n CreateSetupIntentRequestBody,\n CreateSetupIntentResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'billing/setupIntent', sdkPartName: 'billingSetupIntent'},\n ]\n}\n\nexport class DowngradePlanRequest extends RequestPost<\n DowngradePlanPathParameters,\n undefined,\n DowngradePlanRequestBody,\n DowngradePlanResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'billing/downgradePlan', sdkPartName: 'billingDowngradePlan'},\n ]\n}\n\nexport class GetBillingDetailsRequest extends RequestGet<\n GetBillingDetailsPathParameters,\n undefined,\n GetBillingDetailsResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'billing/details', sdkPartName: 'billingDetail'},\n ]\n}\n\nexport class GetCurrentPeriodRequest extends RequestGet<\n GetCurrentPeriodPathParameters,\n undefined,\n GetCurrentPeriodResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'billing/currentPeriod', sdkPartName: 'billingCurrentPeriod'},\n ]\n}\n\nexport class GetInvoicesRequest extends RequestGet<\n GetInvoicesPathParameters,\n GetInvoicesQueryStringParameters,\n GetInvoicesResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'billing/invoices', sdkPartName: 'billingInvoice'},\n ]\n}\n\nexport class ChangeSubscriptionRequest extends RequestPost<\n ChangeSubscriptionPathParameters,\n undefined,\n ChangeSubscriptionRequestBody,\n ChangeSubscriptionResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'accountId', routePart: 'billing/upgradePlan', sdkPartName: 'billingUpgradePlan'},\n ]\n}\n\nexport class GetAllAccountsRequest extends RequestGet<\n undefined,\n GetAllAccountsQueryStringParameters,\n GetAllAccountsResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'care/accounts', sdkPartName: 'careAccounts'}]\n}\n\nexport class CreateConsentByContactIdRequest extends RequestPost<\n CreateConsentByContactIdPathParameters,\n undefined,\n CreateConsentByContactIdRequestBody,\n CreateConsentByContactIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'},\n {routePart: 'consent', sdkPartName: 'consent'},\n ]\n}\n\nexport class DeleteConsentByContactIdRequest extends RequestDelete<\n DeleteConsentByContactIdPathParameters,\n DeleteConsentByContactIdQueryStringParameters,\n DeleteConsentByContactIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'},\n {routePart: 'consent', sdkPartName: 'consent'},\n ]\n}\n\nexport class DeleteContactRequest extends RequestDelete<\n DeleteContactPathParameters,\n undefined,\n DeleteContactResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'}]\n}\n\nexport class GetAssetsByContactIdRequest extends RequestGet<\n GetAssetsByContactIdPathParameters,\n GetAssetsByContactIdQueryStringParameters,\n GetAssetsByContactIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'},\n {routePart: 'assets', sdkPartName: 'assets'},\n ]\n}\n\nexport class GetConsentByContactIdRequest extends RequestGet<\n GetConsentByContactIdPathParameters,\n GetConsentByContactIdQueryStringParameters,\n GetConsentByContactIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'},\n {routePart: 'consent', sdkPartName: 'consent'},\n ]\n}\n\nexport class GetContactRequest extends RequestGet<GetContactPathParameters, undefined, GetContactResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'}]\n}\n\nexport class GetContactExportByContactIdRequest extends RequestPost<\n GetContactExportByContactIdPathParameters,\n undefined,\n GetContactExportByContactIdRequestBody,\n GetContactExportByContactIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'},\n {routePart: 'export', sdkPartName: 'export'},\n ]\n}\n\nexport class GetScanExportByContactIdRequest extends RequestPost<\n GetScanExportByContactIdPathParameters,\n undefined,\n GetScanExportByContactIdRequestBody,\n GetScanExportByContactIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'},\n {routePart: 'scans/export', sdkPartName: 'scansExport'},\n ]\n}\n\nexport class GetScanLocationDataByContactIdRequest extends RequestGet<\n GetScanLocationDataByContactIdPathParameters,\n GetScanLocationDataByContactIdQueryStringParameters,\n GetScanLocationDataByContactIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'},\n {routePart: 'scans/location', sdkPartName: 'scansLocation'},\n ]\n}\n\nexport class GetScansByContactIdRequest extends RequestGet<\n GetScansByContactIdPathParameters,\n undefined,\n GetScansByContactIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'},\n {routePart: 'scans', sdkPartName: 'scans'},\n ]\n}\n\nexport class LinkContactToScanRequest extends RequestPost<\n LinkContactToScanPathParameters,\n undefined,\n LinkContactToScanRequestBody,\n LinkContactToScanResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'},\n {parm: 'scanId', routePart: 'scans', sdkPartName: 'scan'},\n ]\n}\n\nexport class UpdateContactRequest extends RequestPatch<\n UpdateContactPathParameters,\n undefined,\n UpdateContactRequestBody,\n UpdateContactResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'contactId', routePart: 'contacts', sdkPartName: 'contact'}]\n}\n\nexport class CheckCustomLocatorKeyRangeRequest extends RequestGet<\n CheckCustomLocatorKeyRangePathParameters,\n CheckCustomLocatorKeyRangeQueryStringParameters,\n CheckCustomLocatorKeyRangeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'customDomain', routePart: 'customdomains', sdkPartName: 'customdomain'},\n {routePart: 'locator/collisions', sdkPartName: 'locatorCollisions'},\n ]\n}\n\nexport class DeleteCustomDomainRequest extends RequestDelete<DeleteCustomDomainPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'customDomain', routePart: 'customdomains', sdkPartName: 'customdomain'},\n ]\n}\n\nexport class RetryCustomDomainRequest extends RequestPost<\n RetryCustomDomainPathParameters,\n undefined,\n undefined,\n RetryCustomDomainResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'customDomain', routePart: 'customdomains', sdkPartName: 'customdomain'},\n {routePart: 'retry', sdkPartName: 'retry'},\n ]\n}\n\nexport class GetFileRequest extends RequestPost<GetFilePathParameters, undefined, undefined, GetFileResponseBody> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'fileId', routePart: 'files', sdkPartName: 'file'},\n {routePart: 'validate', sdkPartName: 'validate'},\n ]\n}\n\nexport class ValidateFileRequest extends RequestPost<\n ValidateFilePathParameters,\n undefined,\n undefined,\n ValidateFileResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'fileId', routePart: 'files', sdkPartName: 'file'},\n {routePart: 'validate', sdkPartName: 'validate'},\n ]\n}\n\nexport class CreateUserByInvitationIdRequest extends RequestPost<\n CreateUserByInvitationIdPathParameters,\n undefined,\n undefined,\n CreateUserByInvitationIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'invitationId', routePart: 'invitations', sdkPartName: 'invitation'},\n {routePart: 'users', sdkPartName: 'users'},\n ]\n}\n\nexport class DeleteInvitationRequest extends RequestDelete<\n DeleteInvitationPathParameters,\n undefined,\n DeleteInvitationResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'invitationId', routePart: 'invitations', sdkPartName: 'invitation'}]\n}\n\nexport class GetInvitationRequest extends RequestGet<\n GetInvitationPathParameters,\n undefined,\n GetInvitationResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'invitationId', routePart: 'invitations', sdkPartName: 'invitation'}]\n}\n\nexport class DeleteJobRequest extends RequestDelete<DeleteJobPathParameters, undefined, DeleteJobResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'jobId', routePart: 'jobs', sdkPartName: 'job'}]\n}\n\nexport class DeletePrintJobRequest extends RequestDelete<\n DeletePrintJobPathParameters,\n undefined,\n DeletePrintJobResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'printJobId', routePart: 'printJobs', sdkPartName: 'printJob'}]\n}\n\nexport class GetJobRequest extends RequestGet<GetJobPathParameters, undefined, GetJobResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'jobId', routePart: 'jobs', sdkPartName: 'job'}]\n}\n\nexport class InvokePrintJobByJobIdRequest extends RequestPatch<\n InvokePrintJobByJobIdPathParameters,\n undefined,\n undefined,\n InvokePrintJobByJobIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'printJobId', routePart: 'printJobs', sdkPartName: 'printJob'}]\n}\n\nexport class UpdateAssetsLocationsRequest extends RequestPatch<\n UpdateAssetsLocationsPathParameters,\n undefined,\n UpdateAssetsLocationsRequestBody,\n UpdateAssetsLocationsResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'locationId', routePart: 'locations', sdkPartName: 'location'},\n {routePart: 'assets', sdkPartName: 'assets'},\n ]\n}\n\nexport class DeleteLocationRequest extends RequestDelete<\n DeleteLocationPathParameters,\n DeleteLocationQueryStringParameters,\n DeleteLocationResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'locationId', routePart: 'locations', sdkPartName: 'location'}]\n}\n\nexport class GetAssetsByLocationIdRequest extends RequestGet<\n GetAssetsByLocationIdPathParameters,\n GetAssetsByLocationIdQueryStringParameters,\n GetAssetsByLocationIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'locationId', routePart: 'locations', sdkPartName: 'location'},\n {routePart: 'assets', sdkPartName: 'assets'},\n ]\n}\n\nexport class UpdateLocationRequest extends RequestPatch<\n UpdateLocationPathParameters,\n undefined,\n UpdateLocationRequestBody,\n UpdateLocationResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'locationId', routePart: 'locations', sdkPartName: 'location'}]\n}\n\nexport class SendSupportEmailRequest extends RequestPost<undefined, undefined, SendSupportEmailRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'support', sdkPartName: 'support'}]\n}\n\nexport class GetPricePlansRequest extends RequestGet<undefined, undefined, GetPricePlansResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'pricePlans', sdkPartName: 'pricePlans'}]\n}\n\nexport class AssignDomainToProjectRequest extends RequestPost<\n AssignDomainToProjectPathParameters,\n undefined,\n undefined,\n AssignDomainToProjectResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {parm: 'customDomain', routePart: 'customDomains', sdkPartName: 'customDomain'},\n ]\n}\n\nexport class CreateAssetBatchValidationJobByProjectIdRequest extends RequestPost<\n CreateAssetBatchValidationJobByProjectIdPathParameters,\n undefined,\n CreateAssetBatchValidationJobByProjectIdRequestBody,\n CreateAssetBatchValidationJobByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'jobs/assetbatchvalidation', sdkPartName: 'jobsAssetbatchvalidation'},\n ]\n}\n\nexport class CreateAssetByProjectIdRequest extends RequestPost<\n CreateAssetByProjectIdPathParameters,\n undefined,\n CreateAssetByProjectIdRequestBody,\n CreateAssetByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'assets', sdkPartName: 'assets'},\n ]\n}\n\nexport class CreateAssetCreationJobByProjectIdRequest extends RequestPost<\n CreateAssetCreationJobByProjectIdPathParameters,\n undefined,\n CreateAssetCreationJobByProjectIdRequestBody,\n CreateAssetCreationJobByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'jobs/assetbatch', sdkPartName: 'jobsAssetbatch'},\n ]\n}\n\nexport class CreateAssetCreationPresignedUrlRequest extends RequestPost<\n CreateAssetCreationPresignedUrlPathParameters,\n undefined,\n CreateAssetCreationPresignedUrlRequestBody,\n CreateAssetCreationPresignedUrlResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'jobs/assetbatch/presignedurl', sdkPartName: 'presignedurlJobsAssetbatch'},\n ]\n}\n\nexport class CreateAssetGraphByProjectIdRequest extends RequestPost<\n CreateAssetGraphByProjectIdPathParameters,\n undefined,\n CreateAssetGraphByProjectIdRequestBody,\n CreateAssetGraphByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'assetgraphs', sdkPartName: 'assetgraphs'},\n ]\n}\n\nexport class CreateAssetsByProjectIdRequest extends RequestPost<\n CreateAssetsByProjectIdPathParameters,\n undefined,\n CreateAssetsByProjectIdRequestBody,\n CreateAssetsByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'assets/batch', sdkPartName: 'assetsBatch'},\n ]\n}\n\nexport class CreateContactByProjectIdRequest extends RequestPost<\n CreateContactByProjectIdPathParameters,\n undefined,\n CreateContactByProjectIdRequestBody,\n CreateContactByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'contacts', sdkPartName: 'contacts'},\n ]\n}\n\nexport class CreateContactsByProjectIdRequest extends RequestPost<\n CreateContactsByProjectIdPathParameters,\n undefined,\n CreateContactsByProjectIdRequestBody,\n CreateContactsByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'contacts/batch', sdkPartName: 'contactsBatch'},\n ]\n}\n\nexport class CreatePrintJobByProjectIdRequest extends RequestPost<\n CreatePrintJobByProjectIdPathParameters,\n undefined,\n CreatePrintJobByProjectIdRequestBody,\n CreatePrintJobByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'print', sdkPartName: 'print'},\n ]\n}\n\nexport class CreateQrCodeByProjectIdRequest extends RequestPost<\n CreateQrCodeByProjectIdPathParameters,\n undefined,\n CreateQrCodeByProjectIdRequestBody,\n CreateQrCodeByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'qrcodes', sdkPartName: 'qrCodes'},\n ]\n}\n\nexport class CreateSelfQueuePrintJobByProjectIdRequest extends RequestPost<\n CreateSelfQueuePrintJobByProjectIdPathParameters,\n undefined,\n CreateSelfQueuePrintJobByProjectIdRequestBody,\n CreateSelfQueuePrintJobByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'selfqueueprint', sdkPartName: 'selfqueueprint'},\n ]\n}\n\nexport class CreateSmsTemplateByProjectIdRequest extends RequestPost<\n CreateSmsTemplateByProjectIdPathParameters,\n undefined,\n CreateSmsTemplateByProjectIdRequestBody,\n CreateSmsTemplateByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'smstemplates', sdkPartName: 'smsTemplates'},\n ]\n}\n\nexport class CreateTemplatedPrintJobByProjectIdRequest extends RequestPost<\n CreateTemplatedPrintJobByProjectIdPathParameters,\n undefined,\n CreateTemplatedPrintJobByProjectIdRequestBody,\n CreateTemplatedPrintJobByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'printJobs', sdkPartName: 'printJobs'},\n ]\n}\n\nexport class CreateTemplatedPrintPreviewByProjectIdRequest extends RequestPost<\n CreateTemplatedPrintPreviewByProjectIdPathParameters,\n undefined,\n CreateTemplatedPrintPreviewByProjectIdRequestBody,\n CreateTemplatedPrintPreviewByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'templatedPrint/preview', sdkPartName: 'templatedPrintPreview'},\n ]\n}\n\nexport class CreateWebSessionExportByProjectIdRequest extends RequestPost<\n CreateWebSessionExportByProjectIdPathParameters,\n undefined,\n CreateWebSessionExportByProjectIdRequestBody,\n CreateWebSessionExportByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'websessions/export', sdkPartName: 'websessionsExport'},\n ]\n}\n\nexport class DeleteContactsByProjectIdRequest extends RequestDelete<\n DeleteContactsByProjectIdPathParameters,\n DeleteContactsByProjectIdQueryStringParameters,\n DeleteContactsByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'contacts/batch', sdkPartName: 'contactsBatch'},\n ]\n}\n\nexport class DeleteProjectRequest extends RequestDelete<\n DeleteProjectPathParameters,\n undefined,\n DeleteProjectResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'projectId', routePart: 'projects', sdkPartName: 'project'}]\n}\n\nexport class DeleteSmsTemplateByProjectIdRequest extends RequestDelete<\n DeleteSmsTemplateByProjectIdPathParameters,\n undefined,\n DeleteSmsTemplateByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {parm: 'smsTemplateName', routePart: 'smstemplates', sdkPartName: 'smsTemplate'},\n ]\n}\n\nexport class GetAdvancedAssetReportByProjectIdRequest extends RequestGet<\n GetAdvancedAssetReportByProjectIdPathParameters,\n GetAdvancedAssetReportByProjectIdQueryStringParameters,\n GetAdvancedAssetReportByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'assets/report/advanced', sdkPartName: 'advancedAssetsReport'},\n ]\n}\n\nexport class GetAdvancedContactReportByProjectIdRequest extends RequestGet<\n GetAdvancedContactReportByProjectIdPathParameters,\n GetAdvancedContactReportByProjectIdQueryStringParameters,\n GetAdvancedContactReportByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'contacts/report/advanced', sdkPartName: 'advancedContactsReport'},\n ]\n}\n\nexport class GetAdvancedScanReportByProjectIdRequest extends RequestGet<\n GetAdvancedScanReportByProjectIdPathParameters,\n GetAdvancedScanReportByProjectIdQueryStringParameters,\n GetAdvancedScanReportByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'scans/report/advanced', sdkPartName: 'advancedScansReport'},\n ]\n}\n\nexport class GetAllExportsByProjectIdRequest extends RequestPost<\n GetAllExportsByProjectIdPathParameters,\n undefined,\n GetAllExportsByProjectIdRequestBody,\n GetAllExportsByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'export', sdkPartName: 'export'},\n ]\n}\n\nexport class GetAssetExportByProjectIdRequest extends RequestPost<\n GetAssetExportByProjectIdPathParameters,\n undefined,\n GetAssetExportByProjectIdRequestBody,\n GetAssetExportByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'assets/export', sdkPartName: 'assetsExport'},\n ]\n}\n\nexport class GetAssetGraphsByProjectIdRequest extends RequestGet<\n GetAssetGraphsByProjectIdPathParameters,\n GetAssetGraphsByProjectIdQueryStringParameters,\n GetAssetGraphsByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'assetgraphs', sdkPartName: 'assetgraphs'},\n ]\n}\n\nexport class GetAssetsByProjectIdRequest extends RequestGet<\n GetAssetsByProjectIdPathParameters,\n GetAssetsByProjectIdQueryStringParameters,\n GetAssetsByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'assets', sdkPartName: 'assets'},\n ]\n}\n\nexport class GetBasicAssetReportByProjectIdRequest extends RequestGet<\n GetBasicAssetReportByProjectIdPathParameters,\n undefined,\n GetBasicAssetReportByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'assets/report/basic', sdkPartName: 'basicAssetsReport'},\n ]\n}\n\nexport class GetBasicContactReportByProjectIdRequest extends RequestGet<\n GetBasicContactReportByProjectIdPathParameters,\n undefined,\n GetBasicContactReportByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'contacts/report/basic', sdkPartName: 'basicContactsReport'},\n ]\n}\n\nexport class GetBatchesByProjectIdRequest extends RequestGet<\n GetBatchesByProjectIdPathParameters,\n GetBatchesByProjectIdQueryStringParameters,\n GetBatchesByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'project', sdkPartName: 'project'},\n {routePart: 'batch', sdkPartName: 'batch'},\n ]\n}\n\nexport class GetConsentByProjectIdRequest extends RequestGet<\n GetConsentByProjectIdPathParameters,\n GetConsentByProjectIdQueryStringParameters,\n GetConsentByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'consent', sdkPartName: 'consent'},\n ]\n}\n\nexport class GetContactExportByProjectIdRequest extends RequestPost<\n GetContactExportByProjectIdPathParameters,\n undefined,\n GetContactExportByProjectIdRequestBody,\n GetContactExportByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'contacts/export', sdkPartName: 'contactsExport'},\n ]\n}\n\nexport class GetContactsByProjectIdRequest extends RequestGet<\n GetContactsByProjectIdPathParameters,\n GetContactsByProjectIdQueryStringParameters,\n GetContactsByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'contacts', sdkPartName: 'contacts'},\n ]\n}\n\nexport class GetMostScannedAssetsByProjectIdRequest extends RequestGet<\n GetMostScannedAssetsByProjectIdPathParameters,\n GetMostScannedAssetsByProjectIdQueryStringParameters,\n GetMostScannedAssetsByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'assets/mostscanned', sdkPartName: 'assetsMostscanned'},\n ]\n}\n\nexport class GetProjectByProjectIdRequest extends RequestGet<\n GetProjectByProjectIdPathParameters,\n undefined,\n GetProjectByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'projectId', routePart: 'projects', sdkPartName: 'project'}]\n}\n\nexport class GetQrCodeScansExportByProjectIdRequest extends RequestPost<\n GetQrCodeScansExportByProjectIdPathParameters,\n undefined,\n GetQrCodeScansExportByProjectIdRequestBody,\n GetQrCodeScansExportByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'qrCodes/scans/export', sdkPartName: 'exportQrCodesScans'},\n ]\n}\n\nexport class GetQrCodesByProjectIdRequest extends RequestGet<\n GetQrCodesByProjectIdPathParameters,\n GetQrCodesByProjectIdQueryStringParameters,\n GetQrCodesByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'qrcodes', sdkPartName: 'qrCodes'},\n ]\n}\n\nexport class GetScanDayOfWeekByProjectIdRequest extends RequestGet<\n GetScanDayOfWeekByProjectIdPathParameters,\n GetScanDayOfWeekByProjectIdQueryStringParameters,\n GetScanDayOfWeekByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'scans/dayofweek', sdkPartName: 'scansDayofweek'},\n ]\n}\n\nexport class GetScanExportByProjectIdRequest extends RequestPost<\n GetScanExportByProjectIdPathParameters,\n undefined,\n GetScanExportByProjectIdRequestBody,\n GetScanExportByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'scans/export', sdkPartName: 'scansExport'},\n ]\n}\n\nexport class GetScanTimeOfDayByProjectIdRequest extends RequestGet<\n GetScanTimeOfDayByProjectIdPathParameters,\n GetScanTimeOfDayByProjectIdQueryStringParameters,\n GetScanTimeOfDayByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'scans/timeofday', sdkPartName: 'scansTimeofday'},\n ]\n}\n\nexport class GetScanTimelineByProjectIdRequest extends RequestGet<\n GetScanTimelineByProjectIdPathParameters,\n GetScanTimelineByProjectIdQueryStringParameters,\n GetScanTimelineByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'scans/timeline', sdkPartName: 'scansTimeline'},\n ]\n}\n\nexport class GetScansByProjectIdRequest extends RequestGet<\n GetScansByProjectIdPathParameters,\n GetScansByProjectIdQueryStringParameters,\n GetScansByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'scans', sdkPartName: 'scans'},\n ]\n}\n\nexport class GetSmsTemplateByProjectIdRequest extends RequestGet<\n GetSmsTemplateByProjectIdPathParameters,\n undefined,\n GetSmsTemplateByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {parm: 'smsTemplateName', routePart: 'smstemplates', sdkPartName: 'smsTemplate'},\n ]\n}\n\nexport class GetSmsTemplatesByProjectIdRequest extends RequestGet<\n GetSmsTemplatesByProjectIdPathParameters,\n GetSmsTemplatesByProjectIdQueryStringParameters,\n GetSmsTemplatesByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'smstemplates', sdkPartName: 'smsTemplates'},\n ]\n}\n\nexport class GetUserMediasByProjectIdRequest extends RequestGet<\n GetUserMediasByProjectIdPathParameters,\n GetUserMediasByProjectIdQueryStringParameters,\n GetUserMediasByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'usermedias', sdkPartName: 'usermedias'},\n ]\n}\n\nexport class GetWebSessionsTimelineByProjectIdRequest extends RequestGet<\n GetWebSessionsTimelineByProjectIdPathParameters,\n GetWebSessionsTimelineByProjectIdQueryStringParameters,\n GetWebSessionsTimelineByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {routePart: 'websessions/timeline', sdkPartName: 'websessionsTimeline'},\n ]\n}\n\nexport class UpdateProjectByProjectIdRequest extends RequestPatch<\n UpdateProjectByProjectIdPathParameters,\n undefined,\n UpdateProjectByProjectIdRequestBody,\n UpdateProjectByProjectIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'projectId', routePart: 'projects', sdkPartName: 'project'}]\n}\n\nexport class UpdateSmsTemplateRequest extends RequestPatch<\n UpdateSmsTemplatePathParameters,\n undefined,\n UpdateSmsTemplateRequestBody,\n UpdateSmsTemplateResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n {parm: 'smsTemplateName', routePart: 'smstemplates', sdkPartName: 'smsTemplate'},\n ]\n}\n\nexport class GetQrCodeLinkRequest extends RequestGet<\n GetQrCodeLinkPathParameters,\n undefined,\n GetQrCodeLinkResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'qrCodeLink', routePart: 'qrcodelinks', sdkPartName: 'qrcodelink'}]\n}\n\nexport class GetQrCodeLogoByQrCodeLogoIdRequest extends RequestGet<\n GetQrCodeLogoByQrCodeLogoIdPathParameters,\n undefined,\n GetQrCodeLogoByQrCodeLogoIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'qrCodeLogoId', routePart: 'qrcodelogos', sdkPartName: 'qrcodelogo'}]\n}\n\nexport class UpdateQrCodeLogoByQrCodeLogoIdRequest extends RequestPatch<\n UpdateQrCodeLogoByQrCodeLogoIdPathParameters,\n undefined,\n UpdateQrCodeLogoByQrCodeLogoIdRequestBody,\n UpdateQrCodeLogoByQrCodeLogoIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'qrCodeLogoId', routePart: 'qrcodelogos', sdkPartName: 'qrcodelogo'}]\n}\n\nexport class CreateLinkByQrCodeRequest extends RequestPost<\n CreateLinkByQrCodePathParameters,\n undefined,\n CreateLinkByQrCodeRequestBody,\n CreateLinkByQrCodeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'qrCodeId', routePart: 'qrcodes', sdkPartName: 'qrCode'},\n {routePart: 'links', sdkPartName: 'links'},\n ]\n}\n\nexport class DeleteLinkByQrCodeRequest extends RequestDelete<DeleteLinkByQrCodePathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'qrCodeId', routePart: 'qrcodes', sdkPartName: 'qrCode'},\n {parm: 'link', routePart: 'links', sdkPartName: 'link'},\n ]\n}\n\nexport class DeleteQrCodeRequest extends RequestDelete<\n DeleteQrCodePathParameters,\n undefined,\n DeleteQrCodeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'qrCodeId', routePart: 'qrcodes', sdkPartName: 'qrCode'}]\n}\n\nexport class GetLinksByQrCodeRequest extends RequestGet<\n GetLinksByQrCodePathParameters,\n undefined,\n GetLinksByQrCodeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'qrCodeId', routePart: 'qrcodes', sdkPartName: 'qrCode'},\n {routePart: 'links', sdkPartName: 'links'},\n ]\n}\n\nexport class GetQrCodeRequest extends RequestGet<\n GetQrCodePathParameters,\n GetQrCodeQueryStringParameters,\n GetQrCodeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'qrCodeId', routePart: 'qrcodes', sdkPartName: 'qrCode'}]\n}\n\nexport class UpdateQrCodeRequest extends RequestPatch<\n UpdateQrCodePathParameters,\n undefined,\n UpdateQrCodeRequestBody,\n UpdateQrCodeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'qrCodeId', routePart: 'qrcodes', sdkPartName: 'qrCode'}]\n}\n\nexport class CreateContactByScanIdRequest extends RequestPost<\n CreateContactByScanIdPathParameters,\n undefined,\n CreateContactByScanIdRequestBody,\n CreateContactByScanIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'scanId', routePart: 'scans', sdkPartName: 'scan'},\n {routePart: 'contacts', sdkPartName: 'contacts'},\n ]\n}\n\nexport class GetScanRequest extends RequestGet<\n GetScanPathParameters,\n GetScanQueryStringParameters,\n GetScanResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'scanId', routePart: 'scans', sdkPartName: 'scan'}]\n}\n\nexport class SaveGeolocationByScanIdRequest extends RequestPatch<\n SaveGeolocationByScanIdPathParameters,\n undefined,\n SaveGeolocationByScanIdRequestBody,\n undefined\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'scanId', routePart: 'scans', sdkPartName: 'scan'}]\n}\n\nexport class SendEmailByScanIdRequest extends RequestPost<\n SendEmailByScanIdPathParameters,\n undefined,\n SendEmailByScanIdRequestBody,\n undefined\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'scanId', routePart: 'scans', sdkPartName: 'scan'},\n {routePart: 'email', sdkPartName: 'email'},\n ]\n}\n\nexport class SendSmsByScanIdRequest extends RequestPost<\n SendSmsByScanIdPathParameters,\n undefined,\n SendSmsByScanIdRequestBody,\n SendSmsByScanIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'scanId', routePart: 'scans', sdkPartName: 'scan'},\n {routePart: 'sms', sdkPartName: 'sms'},\n ]\n}\n\nexport class UpdateScanCustomAttributeRequest extends RequestPatch<\n UpdateScanCustomAttributePathParameters,\n undefined,\n UpdateScanCustomAttributeRequestBody,\n UpdateScanCustomAttributeResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'scanId', routePart: 'scans', sdkPartName: 'scan'},\n {routePart: 'customAttribute', sdkPartName: 'customAttribute'},\n ]\n}\n\nexport class DeletePrintPageTemplateRequest extends RequestDelete<\n DeletePrintPageTemplatePathParameters,\n undefined,\n undefined\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'printPageTemplateId', routePart: 'printPageTemplates', sdkPartName: 'printPageTemplate'},\n ]\n}\n\nexport class DeletePrintStickerTemplateRequest extends RequestDelete<\n DeletePrintStickerTemplatePathParameters,\n undefined,\n undefined\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'printStickerTemplateId', routePart: 'printStickerTemplates', sdkPartName: 'printStickerTemplate'},\n ]\n}\n\nexport class DeleteQrCodeStylingTemplateByStylingTemplateIdRequest extends RequestDelete<\n DeleteQrCodeStylingTemplateByStylingTemplateIdPathParameters,\n undefined,\n DeleteQrCodeStylingTemplateByStylingTemplateIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'stylingTemplateId', routePart: 'stylingtemplates', sdkPartName: 'stylingtemplate'},\n ]\n}\n\nexport class GetPrintPageTemplateRequest extends RequestGet<\n GetPrintPageTemplatePathParameters,\n undefined,\n GetPrintPageTemplateResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'printPageTemplateId', routePart: 'printPageTemplates', sdkPartName: 'printPageTemplate'},\n ]\n}\n\nexport class GetPrintStickerTemplateRequest extends RequestGet<\n GetPrintStickerTemplatePathParameters,\n undefined,\n GetPrintStickerTemplateResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'printStickerTemplateId', routePart: 'printStickerTemplates', sdkPartName: 'printStickerTemplate'},\n ]\n}\n\nexport class GetQrCodeStylingTemplateByStylingTemplateIdRequest extends RequestGet<\n GetQrCodeStylingTemplateByStylingTemplateIdPathParameters,\n undefined,\n GetQrCodeStylingTemplateByStylingTemplateIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'stylingTemplateId', routePart: 'stylingtemplates', sdkPartName: 'stylingtemplate'},\n ]\n}\n\nexport class UpdatePrintPageTemplateRequest extends RequestPatch<\n UpdatePrintPageTemplatePathParameters,\n undefined,\n UpdatePrintPageTemplateRequestBody,\n UpdatePrintPageTemplateResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'printPageTemplateId', routePart: 'printPageTemplates', sdkPartName: 'printPageTemplate'},\n ]\n}\n\nexport class UpdatePrintStickerTemplateRequest extends RequestPatch<\n UpdatePrintStickerTemplatePathParameters,\n undefined,\n UpdatePrintStickerTemplateRequestBody,\n UpdatePrintStickerTemplateResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'printStickerTemplateId', routePart: 'printStickerTemplates', sdkPartName: 'printStickerTemplate'},\n ]\n}\n\nexport class UpdateQrCodeStylingTemplateByStylingTemplateIdRequest extends RequestPatch<\n UpdateQrCodeStylingTemplateByStylingTemplateIdPathParameters,\n undefined,\n UpdateQrCodeStylingTemplateByStylingTemplateIdRequestBody,\n UpdateQrCodeStylingTemplateByStylingTemplateIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'stylingTemplateId', routePart: 'stylingtemplates', sdkPartName: 'stylingtemplate'},\n ]\n}\n\nexport class CompleteUserMediaMultipartUploadRequest extends RequestPost<\n CompleteUserMediaMultipartUploadPathParameters,\n undefined,\n CompleteUserMediaMultipartUploadRequestBody,\n CompleteUserMediaMultipartUploadResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'mediaId', routePart: 'usermedias', sdkPartName: 'usermedia'},\n {routePart: 'multipart', sdkPartName: 'multipart'},\n ]\n}\n\nexport class GetMediaRequest extends RequestGet<GetMediaPathParameters, undefined, GetMediaResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'mediaId', routePart: 'usermedias', sdkPartName: 'usermedia'}]\n}\n\nexport class LinkMediaToAssetRequest extends RequestPost<\n LinkMediaToAssetPathParameters,\n undefined,\n undefined,\n LinkMediaToAssetResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'mediaId', routePart: 'usermedias', sdkPartName: 'usermedia'},\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n ]\n}\n\nexport class LinkMediaToProjectRequest extends RequestPost<\n LinkMediaToProjectPathParameters,\n undefined,\n undefined,\n LinkMediaToProjectResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'mediaId', routePart: 'usermedias', sdkPartName: 'usermedia'},\n {parm: 'projectId', routePart: 'project', sdkPartName: 'project'},\n ]\n}\n\nexport class LinkMediaToScanRequest extends RequestPost<\n LinkMediaToScanPathParameters,\n undefined,\n undefined,\n LinkMediaToScanResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'mediaId', routePart: 'usermedias', sdkPartName: 'usermedia'},\n {parm: 'scanId', routePart: 'scans', sdkPartName: 'scan'},\n ]\n}\n\nexport class LinkMediasRequest extends RequestPost<\n LinkMediasPathParameters,\n undefined,\n LinkMediasRequestBody,\n LinkMediasResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'mediaId', routePart: 'usermedias', sdkPartName: 'usermedia'},\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n ]\n}\n\nexport class UnlinkMediaToAssetRequest extends RequestDelete<\n UnlinkMediaToAssetPathParameters,\n undefined,\n UnlinkMediaToAssetResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'mediaId', routePart: 'usermedias', sdkPartName: 'usermedia'},\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n ]\n}\n\nexport class UnlinkMediaToProjectRequest extends RequestDelete<\n UnlinkMediaToProjectPathParameters,\n undefined,\n UnlinkMediaToProjectResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'mediaId', routePart: 'usermedias', sdkPartName: 'usermedia'},\n {parm: 'projectId', routePart: 'projects', sdkPartName: 'project'},\n ]\n}\n\nexport class UnlinkMediaToScanRequest extends RequestDelete<\n UnlinkMediaToScanPathParameters,\n undefined,\n UnlinkMediaToScanResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'mediaId', routePart: 'usermedias', sdkPartName: 'usermedia'},\n {parm: 'scanId', routePart: 'scans', sdkPartName: 'scan'},\n ]\n}\n\nexport class UnlinkMediasRequest extends RequestPost<\n UnlinkMediasPathParameters,\n undefined,\n UnlinkMediasRequestBody,\n UnlinkMediasResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'mediaId', routePart: 'usermedias', sdkPartName: 'usermedia'},\n {parm: 'assetId', routePart: 'assets', sdkPartName: 'asset'},\n ]\n}\n\nexport class UpdateMediaRequest extends RequestPatch<\n UpdateMediaPathParameters,\n undefined,\n UpdateMediaRequestBody,\n UpdateMediaResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'mediaId', routePart: 'usermedias', sdkPartName: 'usermedia'}]\n}\n\nexport class GetUserRolesRequest extends RequestGet<undefined, undefined, GetUserRolesResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'userroles', sdkPartName: 'userroles'}]\n}\n\nexport class CreateAccountByUserIdRequest extends RequestPost<\n CreateAccountByUserIdPathParameters,\n undefined,\n CreateAccountByUserIdRequestBody,\n CreateAccountByUserIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'userId', routePart: 'users', sdkPartName: 'user'},\n {routePart: 'accounts', sdkPartName: 'accounts'},\n ]\n}\n\nexport class GetAccountsByUserIdRequest extends RequestGet<\n GetAccountsByUserIdPathParameters,\n GetAccountsByUserIdQueryStringParameters,\n GetAccountsByUserIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'userId', routePart: 'users', sdkPartName: 'user'},\n {routePart: 'accounts', sdkPartName: 'accounts'},\n ]\n}\n\nexport class GetErrorsByUserIdRequest extends RequestGet<\n GetErrorsByUserIdPathParameters,\n GetErrorsByUserIdQueryStringParameters,\n GetErrorsByUserIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'userId', routePart: 'users', sdkPartName: 'user'},\n {routePart: 'errors', sdkPartName: 'errors'},\n ]\n}\n\nexport class GetInvitationsByUserIdRequest extends RequestGet<\n GetInvitationsByUserIdPathParameters,\n GetInvitationsByUserIdQueryStringParameters,\n GetInvitationsByUserIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'userId', routePart: 'users', sdkPartName: 'user'},\n {routePart: 'invitations', sdkPartName: 'invitations'},\n ]\n}\n\nexport class GetUserRequest extends RequestGet<GetUserPathParameters, undefined, GetUserResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'userId', routePart: 'users', sdkPartName: 'user'}]\n}\n\nexport class GetUserSettingsByUserIdRequest extends RequestGet<\n GetUserSettingsByUserIdPathParameters,\n undefined,\n GetUserSettingsByUserIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'userId', routePart: 'users', sdkPartName: 'user'},\n {parm: 'path', routePart: 'path', sdkPartName: 'path'},\n {routePart: 'settings', sdkPartName: 'settings'},\n ]\n}\n\nexport class SetUserSettingsByUserIdRequest extends RequestPatch<\n SetUserSettingsByUserIdPathParameters,\n undefined,\n SetUserSettingsByUserIdRequestBody,\n SetUserSettingsByUserIdResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'userId', routePart: 'users', sdkPartName: 'user'},\n {parm: 'path', routePart: 'path', sdkPartName: 'path'},\n {routePart: 'settings', sdkPartName: 'settings'},\n ]\n}\n\nexport class UpdateUserRequest extends RequestPatch<\n UpdateUserPathParameters,\n undefined,\n UpdateUserRequestBody,\n UpdateUserResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'userId', routePart: 'users', sdkPartName: 'user'}]\n}\n\nexport class CreateSmsResponseRequest extends RequestPost<undefined, undefined, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'webhook/sms', sdkPartName: 'webhookSms'}]\n}\n\nexport class ExportJobResolutionRequest extends RequestPost<\n undefined,\n undefined,\n ExportJobResolutionRequestBody,\n ExportJobResolutionResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {routePart: 'webhook/export-job-resolution', sdkPartName: 'webhookExportJobResolution'},\n ]\n}\n\nexport class SmsStatusUpdateRequest extends RequestPost<undefined, undefined, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'webhook/sms-status', sdkPartName: 'webhookSmsStatus'}]\n}\n\nexport class StripeEventRequest extends RequestPost<undefined, undefined, StripeEventRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'webhook/stripe', sdkPartName: 'webhookStripe'}]\n}\n\nexport class CreateSessionActionsRequest extends RequestPost<\n CreateSessionActionsPathParameters,\n undefined,\n CreateSessionActionsRequestBody,\n CreateSessionActionsResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'sessionId', routePart: 'websessions', sdkPartName: 'websession'},\n {routePart: 'sessionactions', sdkPartName: 'sessionactions'},\n ]\n}\n\nexport class GetWebSessionRequest extends RequestGet<\n GetWebSessionPathParameters,\n GetWebSessionQueryStringParameters,\n GetWebSessionResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'sessionId', routePart: 'websessions', sdkPartName: 'websession'}]\n}\n\nexport class UpdateWebSessionRequest extends RequestPatch<\n UpdateWebSessionPathParameters,\n undefined,\n UpdateWebSessionRequestBody,\n UpdateWebSessionResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{parm: 'sessionId', routePart: 'websessions', sdkPartName: 'websession'}]\n}\n\nexport class ChangePasswordRequest extends RequestPost<\n undefined,\n undefined,\n ChangePasswordRequestBody,\n RefreshSessionUserSessionResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'auth/user/password', sdkPartName: 'passwordAuthUser'}]\n}\n\nexport class CheckSessionRequest extends RequestGet<undefined, undefined, CheckSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'auth/session', sdkPartName: 'authSession'}]\n}\n\nexport class ConfirmRequest extends RequestGet<undefined, ConfirmQueryStringParameters, undefined> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'auth/confirm', sdkPartName: 'authConfirm'}]\n}\n\nexport class ConfirmInvitedRequest extends RequestGet<undefined, ConfirmInvitedQueryStringParameters, undefined> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'auth/confirm/invited', sdkPartName: 'invitedAuthConfirm'}]\n}\n\nexport class CreateUserRequest extends RequestPost<undefined, undefined, CreateUserRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'auth/user', sdkPartName: 'authUser'}]\n}\n\nexport class GetSessionRequest extends RequestPost<\n undefined,\n undefined,\n undefined,\n RefreshSessionUserSessionResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'auth/session', sdkPartName: 'authSession'}]\n}\n\nexport class DeleteSessionRequest extends RequestGet<undefined, undefined, RefreshSessionUserSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'auth/session', sdkPartName: 'authSession'}]\n}\n\nexport class RefreshSessionRequest extends RequestPost<\n undefined,\n undefined,\n undefined,\n RefreshSessionUserSessionResponseBody\n> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'auth/session/refresh', sdkPartName: 'refreshAuthSession'}]\n}\n\nexport class ResendConfirmationRequest extends RequestPost<\n undefined,\n undefined,\n ResendConfirmationRequestBody,\n undefined\n> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'auth/user/confirmation', sdkPartName: 'confirmationAuthUser'}]\n}\n\nexport class ResetPasswordRequest extends RequestPost<undefined, undefined, ResetPasswordRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{routePart: 'auth/user/reset', sdkPartName: 'resetAuthUser'}]\n}\n\nexport class SamlAcsRequest extends RequestPost<SamlAcsPathParameters, undefined, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'companyName', routePart: 'auth/sso/company', sdkPartName: 'companyAuthSso'},\n {routePart: 'saml/acs', sdkPartName: 'samlAcs'},\n ]\n}\n\nexport class SignOnRequest extends RequestGet<SignOnPathParameters, undefined, SignOnResponseBody> {\n routeSegments?: RequestRouteSegment[] = [\n {parm: 'companyName', routePart: 'auth/sso/company', sdkPartName: 'companyAuthSso'},\n ]\n}\n\n// HANDLER RESOURCE CLASSES\n\nexport class SdkAccountUserConfirmResources extends Resources {\n async get(options?: any): Promise<GetAccountAccessDataResponseBody> {\n const request = new GetAccountAccessDataRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAccountUserRolesResources extends Resources {\n async get(options?: any): Promise<GetUsersRolesByAccountIdResponseBody> {\n const request = new GetUsersRolesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(\n requestBody: UpdateUsersRolesByAccountIdRequestBody,\n options?: any,\n ): Promise<UpdateUsersRolesByAccountIdResponseBody> {\n const request = new UpdateUsersRolesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountUserResource extends Resource {\n confirm(): SdkAccountUserConfirmResources {\n return new SdkAccountUserConfirmResources(this.getSession(), this.pathParameters)\n }\n\n roles(): SdkAccountUserRolesResources {\n return new SdkAccountUserRolesResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteUserByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetUserByAccountIdResponseBody> {\n const request = new GetUserByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(\n requestBody: UpdateUserByAccountIdRequestBody,\n options?: any,\n ): Promise<UpdateUserByAccountIdResponseBody> {\n const request = new UpdateUserByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountUrlSafetiesResources extends Resources {\n async create(\n requestBody: CheckUrlSafetyByAccountIdRequestBody,\n options?: any,\n ): Promise<CheckUrlSafetyByAccountIdResponseBody> {\n const request = new CheckUrlSafetyByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountApikeysResources extends Resources {\n async create(\n requestBody: CreateApiKeyByAccountIdRequestBody,\n options?: any,\n ): Promise<CreateApiKeyByAccountIdResponseBody> {\n const request = new CreateApiKeyByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetApiKeysByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetApiKeysByAccountIdResponseBody> {\n const request = new GetApiKeysByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountAppsResources extends Resources {\n async create(requestBody: CreateAppRequestBody, options?: any): Promise<CreateAppResponseBody> {\n const request = new CreateAppRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetInstalledAppsByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetInstalledAppsByAccountIdResponseBody> {\n const request = new GetInstalledAppsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountAssettypesResources extends Resources {\n async create(\n requestBody: CreateAssetTypeByAccountIdRequestBody,\n options?: any,\n ): Promise<CreateAssetTypeByAccountIdResponseBody> {\n const request = new CreateAssetTypeByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetAssetTypesByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetAssetTypesByAccountIdResponseBody> {\n const request = new GetAssetTypesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountCustomDomainsResources extends Resources {\n async create(\n requestBody: CreateCustomDomainByAccountIdRequestBody,\n options?: any,\n ): Promise<CreateCustomDomainByAccountIdResponseBody> {\n const request = new CreateCustomDomainByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetDomainsByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetDomainsByAccountIdResponseBody> {\n const request = new GetDomainsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountImageUploadResources extends Resources {\n async create(\n requestBody: CreateImageUploadPresignedUrlRequestBody,\n options?: any,\n ): Promise<CreateImageUploadPresignedUrlResponseBody> {\n const request = new CreateImageUploadPresignedUrlRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountInvitationsResources extends Resources {\n async create(\n requestBody: CreateInvitationByAccountIdRequestBody,\n options?: any,\n ): Promise<CreateInvitationByAccountIdResponseBody> {\n const request = new CreateInvitationByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountInvitationsBatchResources extends Resources {\n async create(\n requestBody: CreateInvitationsByAccountIdRequestBody,\n options?: any,\n ): Promise<CreateInvitationsByAccountIdResponseBody> {\n const request = new CreateInvitationsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountLocationsResources extends Resources {\n async create(\n requestBody: CreateLocationByAccountIdRequestBody,\n options?: any,\n ): Promise<CreateLocationByAccountIdResponseBody> {\n const request = new CreateLocationByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetLocationsByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetLocationsByAccountIdResponseBody> {\n const request = new GetLocationsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountPrintPageTemplatesResources extends Resources {\n async create(\n requestBody: CreatePrintPageTemplateByAccountIdRequestBody,\n options?: any,\n ): Promise<CreatePrintPageTemplateByAccountIdResponseBody> {\n const request = new CreatePrintPageTemplateByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetPrintPageTemplatesByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetPrintPageTemplatesByAccountIdResponseBody> {\n const request = new GetPrintPageTemplatesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountPrintStickerTemplatesResources extends Resources {\n async create(\n requestBody: CreatePrintStickerTemplateByAccountIdRequestBody,\n options?: any,\n ): Promise<CreatePrintStickerTemplateByAccountIdResponseBody> {\n const request = new CreatePrintStickerTemplateByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetPrintStickerTemplatesByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetPrintStickerTemplatesByAccountIdResponseBody> {\n const request = new GetPrintStickerTemplatesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountProjectsResources extends Resources {\n async create(\n requestBody: CreateProjectByAccountIdRequestBody,\n options?: any,\n ): Promise<CreateProjectByAccountIdResponseBody> {\n const request = new CreateProjectByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetProjectsByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetProjectsByAccountIdResponseBody> {\n const request = new GetProjectsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountQrcodelogosResources extends Resources {\n async create(\n requestBody: CreateQrCodeLogoByAccountRequestBody,\n options?: any,\n ): Promise<CreateQrCodeLogoByAccountResponseBody> {\n const request = new CreateQrCodeLogoByAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetQrCodeLogosByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetQrCodeLogosByAccountIdResponseBody> {\n const request = new GetQrCodeLogosByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountStylingtemplatesResources extends Resources {\n async create(\n requestBody: CreateQrCodeStylingTemplateByAccountRequestBody,\n options?: any,\n ): Promise<CreateQrCodeStylingTemplateByAccountResponseBody> {\n const request = new CreateQrCodeStylingTemplateByAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetQrCodeStylingTemplatesByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetQrCodeStylingTemplatesByAccountIdResponseBody> {\n const request = new GetQrCodeStylingTemplatesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountCustomattributesResources extends Resources {\n async create(\n requestBody: CreateQueryableCustomAttributeRequestBody,\n options?: any,\n ): Promise<CreateQueryableCustomAttributeResponseBody> {\n const request = new CreateQueryableCustomAttributeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetQueryableCustomAttributeQueryStringParameters,\n options?: any,\n ): Promise<GetQueryableCustomAttributeResponseBody> {\n const request = new GetQueryableCustomAttributeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountSSOConfigurationResources extends Resources {\n async create(\n requestBody: CreateSamlConfigurationRequestBody,\n options?: any,\n ): Promise<CreateSamlConfigurationResponseBody> {\n const request = new CreateSamlConfigurationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountZendeskTicketResources extends Resources {\n async create(requestBody: CreateTicketByAccountIdRequestBody, options?: any): Promise<any> {\n const request = new CreateTicketByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountUsermediasPresignedurlmultipartResources extends Resources {\n async create(\n requestBody: CreateUserMediaMultipartPresignedUrlByAccountIdRequestBody,\n options?: any,\n ): Promise<CreateUserMediaMultipartPresignedUrlByAccountIdResponseBody> {\n const request = new CreateUserMediaMultipartPresignedUrlByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountUsermediasPresignedurlResources extends Resources {\n async create(\n requestBody: CreateUserMediaPresignedUrlByAccountIdRequestBody,\n options?: any,\n ): Promise<CreateUserMediaPresignedUrlByAccountIdResponseBody> {\n const request = new CreateUserMediaPresignedUrlByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountWebsessionsExportResources extends Resources {\n async create(\n requestBody: CreateWebSessionExportByAccountIdRequestBody,\n options?: any,\n ): Promise<CreateWebSessionExportByAccountIdResponseBody> {\n const request = new CreateWebSessionExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountContactsBatchResources extends Resources {\n async delete(\n queryStringParameters: DeleteContactsByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<DeleteContactsByAccountIdResponseBody> {\n const request = new DeleteContactsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountPluginPasswordResources extends Resources {\n async get(options?: any): Promise<GetAccountPluginPasswordResponseBody> {\n const request = new GetAccountPluginPasswordRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAccountPluginKlaviyoKeyResources extends Resources {\n async get(options?: any): Promise<GetDecryptedKlaviyoKeyResponseBody> {\n const request = new GetDecryptedKlaviyoKeyRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAccountPluginKlaviyoResources extends Resources {\n async update(\n requestBody: UpdateKlaviyoAccountPluginRequestBody,\n options?: any,\n ): Promise<UpdateKlaviyoAccountPluginResponseBody> {\n const request = new UpdateKlaviyoAccountPluginRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountPluginRehrigResources extends Resources {\n async update(\n requestBody: UpdateRehrigAccountPluginRequestBody,\n options?: any,\n ): Promise<UpdateRehrigAccountPluginResponseBody> {\n const request = new UpdateRehrigAccountPluginRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountPluginResource extends Resource {\n password(): SdkAccountPluginPasswordResources {\n return new SdkAccountPluginPasswordResources(this.getSession(), this.pathParameters)\n }\n\n klaviyoKey(): SdkAccountPluginKlaviyoKeyResources {\n return new SdkAccountPluginKlaviyoKeyResources(this.getSession(), this.pathParameters)\n }\n\n klaviyo(): SdkAccountPluginKlaviyoResources {\n return new SdkAccountPluginKlaviyoResources(this.getSession(), this.pathParameters)\n }\n\n rehrig(): SdkAccountPluginRehrigResources {\n return new SdkAccountPluginRehrigResources(this.getSession(), this.pathParameters)\n }\n\n async update(options?: any): Promise<any> {\n const request = new EnablePluginByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAccountCustomDomainTestResources extends Resources {\n async update(options?: any): Promise<TestDomainConnectionResponseBody> {\n const request = new TestDomainConnectionRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAccountCustomDomainResource extends Resource {\n test(): SdkAccountCustomDomainTestResources {\n return new SdkAccountCustomDomainTestResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetCustomDomainResponseBody> {\n const request = new GetCustomDomainRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAccountAdvancedAssetsReportResources extends Resources {\n async get(\n queryStringParameters: GetAdvancedAssetReportByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetAdvancedAssetReportByAccountIdResponseBody> {\n const request = new GetAdvancedAssetReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountAdvancedContactsReportResources extends Resources {\n async get(\n queryStringParameters: GetAdvancedContactReportByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetAdvancedContactReportByAccountIdResponseBody> {\n const request = new GetAdvancedContactReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountAdvancedScansReportResources extends Resources {\n async get(\n queryStringParameters: GetAdvancedScanReportByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetAdvancedScanReportByAccountIdResponseBody> {\n const request = new GetAdvancedScanReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountOwnerAppsResources extends Resources {\n async get(\n queryStringParameters: GetAllAppsByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetAllAppsByAccountIdResponseBody> {\n const request = new GetAllAppsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountAssetsExportResources extends Resources {\n async create(\n requestBody: GetAssetExportByAccountIdRequestBody,\n options?: any,\n ): Promise<GetAssetExportByAccountIdResponseBody> {\n const request = new GetAssetExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountAssetgraphsResources extends Resources {\n async get(\n queryStringParameters: GetAssetGraphsByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetAssetGraphsByAccountIdResponseBody> {\n const request = new GetAssetGraphsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountAssetsResources extends Resources {\n async get(\n queryStringParameters: GetAssetsByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetAssetsByAccountIdResponseBody> {\n const request = new GetAssetsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountBasicAssetsReportResources extends Resources {\n async get(options?: any): Promise<GetBasicAssetReportByAccountIdResponseBody> {\n const request = new GetBasicAssetReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAccountBasicContactsReportResources extends Resources {\n async get(options?: any): Promise<GetBasicContactReportByAccountIdResponseBody> {\n const request = new GetBasicContactReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAccountBatchResources extends Resources {\n async get(\n queryStringParameters: GetBatchesByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetBatchesByAccountIdResponseBody> {\n const request = new GetBatchesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountConsentResources extends Resources {\n async get(\n queryStringParameters: GetConsentByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetConsentByAccountIdResponseBody> {\n const request = new GetConsentByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountContactsExportResources extends Resources {\n async create(\n requestBody: GetContactExportByAccountIdRequestBody,\n options?: any,\n ): Promise<GetContactExportByAccountIdResponseBody> {\n const request = new GetContactExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountContactsResources extends Resources {\n async get(\n queryStringParameters: GetContactsByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetContactsByAccountIdResponseBody> {\n const request = new GetContactsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountJobsResources extends Resources {\n async get(\n queryStringParameters: GetJobsByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetJobsByAccountIdResponseBody> {\n const request = new GetJobsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountAssetsMostscannedResources extends Resources {\n async get(\n queryStringParameters: GetMostScannedAssetsByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetMostScannedAssetsByAccountIdResponseBody> {\n const request = new GetMostScannedAssetsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountPluginsResources extends Resources {\n async get(options?: any): Promise<GetPluginsByAccountIdResponseBody> {\n const request = new GetPluginsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAccountPricePlanResources extends Resources {\n async get(options?: any): Promise<GetPricePlanByAccountIdResponseBody> {\n const request = new GetPricePlanByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(\n requestBody: UpdatePricePlanByAccountIdRequestBody,\n options?: any,\n ): Promise<UpdatePricePlanByAccountIdResponseBody> {\n const request = new UpdatePricePlanByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountPrintJobsResources extends Resources {\n async get(\n queryStringParameters: GetPrintJobsByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetPrintJobsByAccountIdResponseBody> {\n const request = new GetPrintJobsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountExportQrCodesScansResources extends Resources {\n async create(\n requestBody: GetQrcodeScansExportByAccountIdRequestBody,\n options?: any,\n ): Promise<GetQrcodeScansExportByAccountIdResponseBody> {\n const request = new GetQrcodeScansExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountQrCodesResources extends Resources {\n async get(\n queryStringParameters: GetQrCodesByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetQrCodesByAccountIdResponseBody> {\n const request = new GetQrCodesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountScansDayofweekResources extends Resources {\n async get(\n queryStringParameters: GetScanDayOfWeekByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetScanDayOfWeekByAccountIdResponseBody> {\n const request = new GetScanDayOfWeekByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountScansExportResources extends Resources {\n async create(\n requestBody: GetScanExportByAccountIdRequestBody,\n options?: any,\n ): Promise<GetScanExportByAccountIdResponseBody> {\n const request = new GetScanExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountScansTimeofdayResources extends Resources {\n async get(\n queryStringParameters: GetScanTimeOfDayByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetScanTimeOfDayByAccountIdResponseBody> {\n const request = new GetScanTimeOfDayByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountScansTimelineResources extends Resources {\n async get(\n queryStringParameters: GetScanTimelineByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetScanTimelineByAccountIdResponseBody> {\n const request = new GetScanTimelineByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountScansResources extends Resources {\n async get(\n queryStringParameters: GetScansByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetScansByAccountIdResponseBody> {\n const request = new GetScansByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountUsermediasResources extends Resources {\n async get(\n queryStringParameters: GetUserMediasByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetUserMediasByAccountIdResponseBody> {\n const request = new GetUserMediasByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountUsersResources extends Resources {\n async get(\n queryStringParameters: GetUsersByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetUsersByAccountIdResponseBody> {\n const request = new GetUsersByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountWebsessionsTimelineResources extends Resources {\n async get(\n queryStringParameters: GetWebSessionsTimelineByAccountIdQueryStringParameters,\n options?: any,\n ): Promise<GetWebSessionsTimelineByAccountIdResponseBody> {\n const request = new GetWebSessionsTimelineByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAccountAppInstallResources extends Resources {\n async create(options?: any): Promise<InstallAppToAccountResponseBody> {\n const request = new InstallAppToAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAccountAppResource extends Resource {\n install(): SdkAccountAppInstallResources {\n return new SdkAccountAppInstallResources(this.getSession(), this.pathParameters)\n }\n}\n\nexport class SdkAccountCampaignInformationResources extends Resources {\n async get(options?: any): Promise<RetrieveCampaignStatusByAccountIdResponseBody> {\n const request = new RetrieveCampaignStatusByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async create(\n requestBody: CreateCampaignAccountByAccountIdRequestBody,\n options?: any,\n ): Promise<CreateCampaignAccountByAccountIdResponseBody> {\n const request = new CreateCampaignAccountByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountClockResources extends Resources {\n async create(\n requestBody: AdvanceStripeClockByAccountIdRequestBody,\n options?: any,\n ): Promise<AdvanceStripeClockByAccountIdResponseBody> {\n const request = new AdvanceStripeClockByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountEngagePricePlanResources extends Resources {\n async update(\n requestBody: UpdateEngagePricePlanRequestBody,\n options?: any,\n ): Promise<UpdateEngagePricePlanResponseBody> {\n const request = new UpdateEngagePricePlanRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountQrcodelogosUploadResources extends Resources {\n async create(\n requestBody: UploadQrCodeLogoByAccountRequestBody,\n options?: any,\n ): Promise<UploadQrCodeLogoByAccountResponseBody> {\n const request = new UploadQrCodeLogoByAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAccountResource extends Resource {\n user(userId: string): SdkAccountUserResource {\n return new SdkAccountUserResource(this.getSession(), {...this.pathParameters, userId})\n }\n\n urlSafeties(): SdkAccountUrlSafetiesResources {\n return new SdkAccountUrlSafetiesResources(this.getSession(), this.pathParameters)\n }\n\n apikeys(): SdkAccountApikeysResources {\n return new SdkAccountApikeysResources(this.getSession(), this.pathParameters)\n }\n\n apps(): SdkAccountAppsResources {\n return new SdkAccountAppsResources(this.getSession(), this.pathParameters)\n }\n\n assettypes(): SdkAccountAssettypesResources {\n return new SdkAccountAssettypesResources(this.getSession(), this.pathParameters)\n }\n\n customDomains(): SdkAccountCustomDomainsResources {\n return new SdkAccountCustomDomainsResources(this.getSession(), this.pathParameters)\n }\n\n imageUpload(): SdkAccountImageUploadResources {\n return new SdkAccountImageUploadResources(this.getSession(), this.pathParameters)\n }\n\n invitations(): SdkAccountInvitationsResources {\n return new SdkAccountInvitationsResources(this.getSession(), this.pathParameters)\n }\n\n invitationsBatch(): SdkAccountInvitationsBatchResources {\n return new SdkAccountInvitationsBatchResources(this.getSession(), this.pathParameters)\n }\n\n locations(): SdkAccountLocationsResources {\n return new SdkAccountLocationsResources(this.getSession(), this.pathParameters)\n }\n\n printPageTemplates(): SdkAccountPrintPageTemplatesResources {\n return new SdkAccountPrintPageTemplatesResources(this.getSession(), this.pathParameters)\n }\n\n printStickerTemplates(): SdkAccountPrintStickerTemplatesResources {\n return new SdkAccountPrintStickerTemplatesResources(this.getSession(), this.pathParameters)\n }\n\n projects(): SdkAccountProjectsResources {\n return new SdkAccountProjectsResources(this.getSession(), this.pathParameters)\n }\n\n qrcodelogos(): SdkAccountQrcodelogosResources {\n return new SdkAccountQrcodelogosResources(this.getSession(), this.pathParameters)\n }\n\n stylingtemplates(): SdkAccountStylingtemplatesResources {\n return new SdkAccountStylingtemplatesResources(this.getSession(), this.pathParameters)\n }\n\n customattributes(): SdkAccountCustomattributesResources {\n return new SdkAccountCustomattributesResources(this.getSession(), this.pathParameters)\n }\n\n SSOConfiguration(): SdkAccountSSOConfigurationResources {\n return new SdkAccountSSOConfigurationResources(this.getSession(), this.pathParameters)\n }\n\n zendeskTicket(): SdkAccountZendeskTicketResources {\n return new SdkAccountZendeskTicketResources(this.getSession(), this.pathParameters)\n }\n\n usermediasPresignedurlmultipart(): SdkAccountUsermediasPresignedurlmultipartResources {\n return new SdkAccountUsermediasPresignedurlmultipartResources(this.getSession(), this.pathParameters)\n }\n\n usermediasPresignedurl(): SdkAccountUsermediasPresignedurlResources {\n return new SdkAccountUsermediasPresignedurlResources(this.getSession(), this.pathParameters)\n }\n\n websessionsExport(): SdkAccountWebsessionsExportResources {\n return new SdkAccountWebsessionsExportResources(this.getSession(), this.pathParameters)\n }\n\n contactsBatch(): SdkAccountContactsBatchResources {\n return new SdkAccountContactsBatchResources(this.getSession(), this.pathParameters)\n }\n\n plugin(pluginId: string): SdkAccountPluginResource {\n return new SdkAccountPluginResource(this.getSession(), {...this.pathParameters, pluginId})\n }\n\n customDomain(customDomain: string): SdkAccountCustomDomainResource {\n return new SdkAccountCustomDomainResource(this.getSession(), {...this.pathParameters, customDomain})\n }\n\n advancedAssetsReport(): SdkAccountAdvancedAssetsReportResources {\n return new SdkAccountAdvancedAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedContactsReport(): SdkAccountAdvancedContactsReportResources {\n return new SdkAccountAdvancedContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedScansReport(): SdkAccountAdvancedScansReportResources {\n return new SdkAccountAdvancedScansReportResources(this.getSession(), this.pathParameters)\n }\n\n ownerApps(): SdkAccountOwnerAppsResources {\n return new SdkAccountOwnerAppsResources(this.getSession(), this.pathParameters)\n }\n\n assetsExport(): SdkAccountAssetsExportResources {\n return new SdkAccountAssetsExportResources(this.getSession(), this.pathParameters)\n }\n\n assetgraphs(): SdkAccountAssetgraphsResources {\n return new SdkAccountAssetgraphsResources(this.getSession(), this.pathParameters)\n }\n\n assets(): SdkAccountAssetsResources {\n return new SdkAccountAssetsResources(this.getSession(), this.pathParameters)\n }\n\n basicAssetsReport(): SdkAccountBasicAssetsReportResources {\n return new SdkAccountBasicAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n basicContactsReport(): SdkAccountBasicContactsReportResources {\n return new SdkAccountBasicContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n batch(): SdkAccountBatchResources {\n return new SdkAccountBatchResources(this.getSession(), this.pathParameters)\n }\n\n consent(): SdkAccountConsentResources {\n return new SdkAccountConsentResources(this.getSession(), this.pathParameters)\n }\n\n contactsExport(): SdkAccountContactsExportResources {\n return new SdkAccountContactsExportResources(this.getSession(), this.pathParameters)\n }\n\n contacts(): SdkAccountContactsResources {\n return new SdkAccountContactsResources(this.getSession(), this.pathParameters)\n }\n\n jobs(): SdkAccountJobsResources {\n return new SdkAccountJobsResources(this.getSession(), this.pathParameters)\n }\n\n assetsMostscanned(): SdkAccountAssetsMostscannedResources {\n return new SdkAccountAssetsMostscannedResources(this.getSession(), this.pathParameters)\n }\n\n plugins(): SdkAccountPluginsResources {\n return new SdkAccountPluginsResources(this.getSession(), this.pathParameters)\n }\n\n pricePlan(): SdkAccountPricePlanResources {\n return new SdkAccountPricePlanResources(this.getSession(), this.pathParameters)\n }\n\n printJobs(): SdkAccountPrintJobsResources {\n return new SdkAccountPrintJobsResources(this.getSession(), this.pathParameters)\n }\n\n exportQrCodesScans(): SdkAccountExportQrCodesScansResources {\n return new SdkAccountExportQrCodesScansResources(this.getSession(), this.pathParameters)\n }\n\n qrCodes(): SdkAccountQrCodesResources {\n return new SdkAccountQrCodesResources(this.getSession(), this.pathParameters)\n }\n\n scansDayofweek(): SdkAccountScansDayofweekResources {\n return new SdkAccountScansDayofweekResources(this.getSession(), this.pathParameters)\n }\n\n scansExport(): SdkAccountScansExportResources {\n return new SdkAccountScansExportResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeofday(): SdkAccountScansTimeofdayResources {\n return new SdkAccountScansTimeofdayResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeline(): SdkAccountScansTimelineResources {\n return new SdkAccountScansTimelineResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkAccountScansResources {\n return new SdkAccountScansResources(this.getSession(), this.pathParameters)\n }\n\n usermedias(): SdkAccountUsermediasResources {\n return new SdkAccountUsermediasResources(this.getSession(), this.pathParameters)\n }\n\n users(): SdkAccountUsersResources {\n return new SdkAccountUsersResources(this.getSession(), this.pathParameters)\n }\n\n websessionsTimeline(): SdkAccountWebsessionsTimelineResources {\n return new SdkAccountWebsessionsTimelineResources(this.getSession(), this.pathParameters)\n }\n\n app(appId: string): SdkAccountAppResource {\n return new SdkAccountAppResource(this.getSession(), {...this.pathParameters, appId})\n }\n\n campaignInformation(): SdkAccountCampaignInformationResources {\n return new SdkAccountCampaignInformationResources(this.getSession(), this.pathParameters)\n }\n\n clock(): SdkAccountClockResources {\n return new SdkAccountClockResources(this.getSession(), this.pathParameters)\n }\n\n engagePricePlan(): SdkAccountEngagePricePlanResources {\n return new SdkAccountEngagePricePlanResources(this.getSession(), this.pathParameters)\n }\n\n qrcodelogosUpload(): SdkAccountQrcodelogosUploadResources {\n return new SdkAccountQrcodelogosUploadResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetAccountResponseBody> {\n const request = new GetAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAccountRequestBody, options?: any): Promise<UpdateAccountResponseBody> {\n const request = new UpdateAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkApikeySecretResources extends Resources {\n async get(options?: any): Promise<GetApiKeySecretResponseBody> {\n const request = new GetApiKeySecretRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(options?: any): Promise<ResetApiKeySecretResponseBody> {\n const request = new ResetApiKeySecretRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkApikeyResource extends Resource {\n secret(): SdkApikeySecretResources {\n return new SdkApikeySecretResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetApiKeyResponseBody> {\n const request = new GetApiKeyRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateApiKeyRequestBody, options?: any): Promise<UpdateApiKeyResponseBody> {\n const request = new UpdateApiKeyRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAppAccountLoadResources extends Resources {\n async create(options?: any): Promise<LoadAppResponseBody> {\n const request = new LoadAppRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAppAccountResource extends Resource {\n load(): SdkAppAccountLoadResources {\n return new SdkAppAccountLoadResources(this.getSession(), this.pathParameters)\n }\n}\n\nexport class SdkAppResource extends Resource {\n account(accountId: string): SdkAppAccountResource {\n return new SdkAppAccountResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n async get(options?: any): Promise<GetAppByAppIdResponseBody> {\n const request = new GetAppByAppIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAppByAppIdRequestBody, options?: any): Promise<UpdateAppByAppIdResponseBody> {\n const request = new UpdateAppByAppIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAppsResources extends Resources {\n async get(queryStringParameters: GetAppsQueryStringParameters, options?: any): Promise<GetAppsResponseBody> {\n const request = new GetAppsRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAppsPublishedResources extends Resources {\n async get(\n queryStringParameters: GetPublishedAppsQueryStringParameters,\n options?: any,\n ): Promise<GetPublishedAppsResponseBody> {\n const request = new GetPublishedAppsRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAppsAccountMainResources extends Resources {\n async get(options?: any): Promise<GetMainAccountByAppAccountIdResponseBody> {\n const request = new GetMainAccountByAppAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAppsAccountResource extends Resource {\n main(): SdkAppsAccountMainResources {\n return new SdkAppsAccountMainResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetAppAccountByAppAccountIdResponseBody> {\n const request = new GetAppAccountByAppAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAssetgraphResource extends Resource {\n async delete(options?: any): Promise<any> {\n const request = new DeleteAssetGraphRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetAssetGraphResponseBody> {\n const request = new GetAssetGraphRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAssetGraphRequestBody, options?: any): Promise<UpdateAssetGraphResponseBody> {\n const request = new UpdateAssetGraphRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAssettypeAssetResource extends Resource {\n async compose(\n requestBody: ComposeAssetByAssetTypeRequestBody,\n options?: any,\n ): Promise<ComposeAssetByAssetTypeResponseBody> {\n const request = new ComposeAssetByAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAssettypeAssetsResources extends Resources {\n async create(\n requestBody: CreateAssetByAssetTypeRequestBody,\n options?: any,\n ): Promise<CreateAssetByAssetTypeResponseBody> {\n const request = new CreateAssetByAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetAssetsByAssetTypeQueryStringParameters,\n options?: any,\n ): Promise<GetAssetsByAssetTypeResponseBody> {\n const request = new GetAssetsByAssetTypeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAssettypeLocationResource extends Resource {\n async get(options?: any): Promise<GetAssetTypeCountAtLocationResponseBody> {\n const request = new GetAssetTypeCountAtLocationRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(\n requestBody: UpdateAssetTypeCountAtLocationRequestBody,\n options?: any,\n ): Promise<UpdateAssetTypeCountAtLocationResponseBody> {\n const request = new UpdateAssetTypeCountAtLocationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAssettypeLocationsResources extends Resources {\n async get(\n queryStringParameters: GetAssetTypeCountsByLocationQueryStringParameters,\n options?: any,\n ): Promise<GetAssetTypeCountsByLocationResponseBody> {\n const request = new GetAssetTypeCountsByLocationRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAssettypeResource extends Resource {\n asset(assetId: string): SdkAssettypeAssetResource {\n return new SdkAssettypeAssetResource(this.getSession(), {...this.pathParameters, assetId})\n }\n\n assets(): SdkAssettypeAssetsResources {\n return new SdkAssettypeAssetsResources(this.getSession(), this.pathParameters)\n }\n\n location(locationId: string): SdkAssettypeLocationResource {\n return new SdkAssettypeLocationResource(this.getSession(), {...this.pathParameters, locationId})\n }\n\n locations(): SdkAssettypeLocationsResources {\n return new SdkAssettypeLocationsResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<DeleteAssetTypeResponseBody> {\n const request = new DeleteAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(\n queryStringParameters: GetAssetTypeByAssetTypeIdQueryStringParameters,\n options?: any,\n ): Promise<GetAssetTypeByAssetTypeIdResponseBody> {\n const request = new GetAssetTypeByAssetTypeIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateAssetTypeRequestBody, options?: any): Promise<UpdateAssetTypeResponseBody> {\n const request = new UpdateAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAssetContactsResources extends Resources {\n async create(\n requestBody: CreateContactByAssetIdRequestBody,\n options?: any,\n ): Promise<CreateContactByAssetIdResponseBody> {\n const request = new CreateContactByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetContactsByAssetIdQueryStringParameters,\n options?: any,\n ): Promise<GetContactsByAssetIdResponseBody> {\n const request = new GetContactsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAssetNeighborsResources extends Resources {\n async create(requestBody: CreateNeighborsByAssetIdRequestBody, options?: any): Promise<any> {\n const request = new CreateNeighborsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetNeighborsByAssetIdQueryStringParameters,\n options?: any,\n ): Promise<GetNeighborsByAssetIdResponseBody> {\n const request = new GetNeighborsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAssetQrCodesResources extends Resources {\n async create(\n requestBody: CreateQrCodesByAssetIdRequestBody,\n options?: any,\n ): Promise<CreateQrCodesByAssetIdResponseBody> {\n const request = new CreateQrCodesByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetQrCodesByAssetIdQueryStringParameters,\n options?: any,\n ): Promise<GetQrCodesByAssetIdResponseBody> {\n const request = new GetQrCodesByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAssetNeighborsDeleteResources extends Resources {\n async create(requestBody: DeleteNeighborsByAssetIdRequestBody, options?: any): Promise<any> {\n const request = new DeleteNeighborsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAssetHistoryResources extends Resources {\n async get(\n queryStringParameters: GetAssetHistoryQueryStringParameters,\n options?: any,\n ): Promise<GetAssetHistoryResponseBody> {\n const request = new GetAssetHistoryRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAssetUrlResource extends Resource {\n async get(\n queryStringParameters: GetExternalNeighborScanCountByAssetIdQueryStringParameters,\n options?: any,\n ): Promise<GetExternalNeighborScanCountByAssetIdResponseBody> {\n const request = new GetExternalNeighborScanCountByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAssetNeighborResource extends Resource {\n async get(\n queryStringParameters: GetNeighborScanCountByAssetIdQueryStringParameters,\n options?: any,\n ): Promise<GetNeighborScanCountByAssetIdResponseBody> {\n const request = new GetNeighborScanCountByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAssetScansExportResources extends Resources {\n async create(\n requestBody: GetScanExportByAssetIdRequestBody,\n options?: any,\n ): Promise<GetScanExportByAssetIdResponseBody> {\n const request = new GetScanExportByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAssetScansLocationResources extends Resources {\n async get(\n queryStringParameters: GetScanLocationDataByAssetIdQueryStringParameters,\n options?: any,\n ): Promise<GetScanLocationDataByAssetIdResponseBody> {\n const request = new GetScanLocationDataByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAssetScansResources extends Resources {\n async get(\n queryStringParameters: GetScansByAssetIdQueryStringParameters,\n options?: any,\n ): Promise<GetScansByAssetIdResponseBody> {\n const request = new GetScansByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAssetUsermediasResources extends Resources {\n async get(\n queryStringParameters: GetUserMediasByAssetIdQueryStringParameters,\n options?: any,\n ): Promise<GetUserMediasByAssetIdResponseBody> {\n const request = new GetUserMediasByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAssetContactResource extends Resource {\n async link(requestBody: LinkContactToAssetRequestBody, options?: any): Promise<LinkContactToAssetResponseBody> {\n const request = new LinkContactToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async unlink(options?: any): Promise<any> {\n const request = new UnlinkContactToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAssetResource extends Resource {\n contacts(): SdkAssetContactsResources {\n return new SdkAssetContactsResources(this.getSession(), this.pathParameters)\n }\n\n neighbors(): SdkAssetNeighborsResources {\n return new SdkAssetNeighborsResources(this.getSession(), this.pathParameters)\n }\n\n qrCodes(): SdkAssetQrCodesResources {\n return new SdkAssetQrCodesResources(this.getSession(), this.pathParameters)\n }\n\n neighborsDelete(): SdkAssetNeighborsDeleteResources {\n return new SdkAssetNeighborsDeleteResources(this.getSession(), this.pathParameters)\n }\n\n history(): SdkAssetHistoryResources {\n return new SdkAssetHistoryResources(this.getSession(), this.pathParameters)\n }\n\n url(url: string): SdkAssetUrlResource {\n return new SdkAssetUrlResource(this.getSession(), {...this.pathParameters, url})\n }\n\n neighbor(neighborId: string): SdkAssetNeighborResource {\n return new SdkAssetNeighborResource(this.getSession(), {...this.pathParameters, neighborId})\n }\n\n scansExport(): SdkAssetScansExportResources {\n return new SdkAssetScansExportResources(this.getSession(), this.pathParameters)\n }\n\n scansLocation(): SdkAssetScansLocationResources {\n return new SdkAssetScansLocationResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkAssetScansResources {\n return new SdkAssetScansResources(this.getSession(), this.pathParameters)\n }\n\n usermedias(): SdkAssetUsermediasResources {\n return new SdkAssetUsermediasResources(this.getSession(), this.pathParameters)\n }\n\n contact(contactId: string): SdkAssetContactResource {\n return new SdkAssetContactResource(this.getSession(), {...this.pathParameters, contactId})\n }\n\n async delete(options?: any): Promise<DeleteAssetResponseBody> {\n const request = new DeleteAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(queryStringParameters: GetAssetQueryStringParameters, options?: any): Promise<GetAssetResponseBody> {\n const request = new GetAssetRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateAssetRequestBody, options?: any): Promise<UpdateAssetResponseBody> {\n const request = new UpdateAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkBatchAssetsResources extends Resources {\n async get(\n queryStringParameters: GetAssetsByBatchIdQueryStringParameters,\n options?: any,\n ): Promise<GetAssetsByBatchIdResponseBody> {\n const request = new GetAssetsByBatchIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkBatchResource extends Resource {\n assets(): SdkBatchAssetsResources {\n return new SdkBatchAssetsResources(this.getSession(), this.pathParameters)\n }\n}\n\nexport class SdkBillingCancelDowngradeResource extends Resource {\n async create(options?: any): Promise<CancelDowngradeRequestResponseBody> {\n const request = new CancelDowngradeRequestRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkBillingCancelSubscriptionResource extends Resource {\n async create(requestBody: CancelSubscriptionRequestBody, options?: any): Promise<CancelSubscriptionResponseBody> {\n const request = new CancelSubscriptionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkUpgradePlanBillingPreviewResource extends Resource {\n async get(\n queryStringParameters: ChangeSubscriptionPreviewQueryStringParameters,\n options?: any,\n ): Promise<ChangeSubscriptionPreviewResponseBody> {\n const request = new ChangeSubscriptionPreviewRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkBillingSetupIntentResource extends Resource {\n async create(requestBody: CreateSetupIntentRequestBody, options?: any): Promise<CreateSetupIntentResponseBody> {\n const request = new CreateSetupIntentRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkBillingDowngradePlanResource extends Resource {\n async create(requestBody: DowngradePlanRequestBody, options?: any): Promise<DowngradePlanResponseBody> {\n const request = new DowngradePlanRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkBillingDetailResource extends Resource {\n async get(options?: any): Promise<GetBillingDetailsResponseBody> {\n const request = new GetBillingDetailsRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkBillingCurrentPeriodResource extends Resource {\n async get(options?: any): Promise<GetCurrentPeriodResponseBody> {\n const request = new GetCurrentPeriodRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkBillingInvoiceResource extends Resource {\n async get(queryStringParameters: GetInvoicesQueryStringParameters, options?: any): Promise<GetInvoicesResponseBody> {\n const request = new GetInvoicesRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkBillingUpgradePlanResource extends Resource {\n async create(requestBody: ChangeSubscriptionRequestBody, options?: any): Promise<ChangeSubscriptionResponseBody> {\n const request = new ChangeSubscriptionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkCareAccountsResources extends Resources {\n async get(\n queryStringParameters: GetAllAccountsQueryStringParameters,\n options?: any,\n ): Promise<GetAllAccountsResponseBody> {\n const request = new GetAllAccountsRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkContactConsentResources extends Resources {\n async create(\n requestBody: CreateConsentByContactIdRequestBody,\n options?: any,\n ): Promise<CreateConsentByContactIdResponseBody> {\n const request = new CreateConsentByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async delete(\n queryStringParameters: DeleteConsentByContactIdQueryStringParameters,\n options?: any,\n ): Promise<DeleteConsentByContactIdResponseBody> {\n const request = new DeleteConsentByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async get(\n queryStringParameters: GetConsentByContactIdQueryStringParameters,\n options?: any,\n ): Promise<GetConsentByContactIdResponseBody> {\n const request = new GetConsentByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkContactAssetsResources extends Resources {\n async get(\n queryStringParameters: GetAssetsByContactIdQueryStringParameters,\n options?: any,\n ): Promise<GetAssetsByContactIdResponseBody> {\n const request = new GetAssetsByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkContactExportResources extends Resources {\n async create(\n requestBody: GetContactExportByContactIdRequestBody,\n options?: any,\n ): Promise<GetContactExportByContactIdResponseBody> {\n const request = new GetContactExportByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkContactScansExportResources extends Resources {\n async create(\n requestBody: GetScanExportByContactIdRequestBody,\n options?: any,\n ): Promise<GetScanExportByContactIdResponseBody> {\n const request = new GetScanExportByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkContactScansLocationResources extends Resources {\n async get(\n queryStringParameters: GetScanLocationDataByContactIdQueryStringParameters,\n options?: any,\n ): Promise<GetScanLocationDataByContactIdResponseBody> {\n const request = new GetScanLocationDataByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkContactScansResources extends Resources {\n async get(options?: any): Promise<GetScansByContactIdResponseBody> {\n const request = new GetScansByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkContactScanResource extends Resource {\n async link(requestBody: LinkContactToScanRequestBody, options?: any): Promise<LinkContactToScanResponseBody> {\n const request = new LinkContactToScanRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkContactResource extends Resource {\n consent(): SdkContactConsentResources {\n return new SdkContactConsentResources(this.getSession(), this.pathParameters)\n }\n\n assets(): SdkContactAssetsResources {\n return new SdkContactAssetsResources(this.getSession(), this.pathParameters)\n }\n\n export(): SdkContactExportResources {\n return new SdkContactExportResources(this.getSession(), this.pathParameters)\n }\n\n scansExport(): SdkContactScansExportResources {\n return new SdkContactScansExportResources(this.getSession(), this.pathParameters)\n }\n\n scansLocation(): SdkContactScansLocationResources {\n return new SdkContactScansLocationResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkContactScansResources {\n return new SdkContactScansResources(this.getSession(), this.pathParameters)\n }\n\n scan(scanId: string): SdkContactScanResource {\n return new SdkContactScanResource(this.getSession(), {...this.pathParameters, scanId})\n }\n\n async delete(options?: any): Promise<DeleteContactResponseBody> {\n const request = new DeleteContactRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetContactResponseBody> {\n const request = new GetContactRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateContactRequestBody, options?: any): Promise<UpdateContactResponseBody> {\n const request = new UpdateContactRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkCustomdomainLocatorCollisionsResources extends Resources {\n async get(\n queryStringParameters: CheckCustomLocatorKeyRangeQueryStringParameters,\n options?: any,\n ): Promise<CheckCustomLocatorKeyRangeResponseBody> {\n const request = new CheckCustomLocatorKeyRangeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkCustomdomainRetryResources extends Resources {\n async create(options?: any): Promise<RetryCustomDomainResponseBody> {\n const request = new RetryCustomDomainRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkCustomdomainResource extends Resource {\n locatorCollisions(): SdkCustomdomainLocatorCollisionsResources {\n return new SdkCustomdomainLocatorCollisionsResources(this.getSession(), this.pathParameters)\n }\n\n retry(): SdkCustomdomainRetryResources {\n return new SdkCustomdomainRetryResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteCustomDomainRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkFileValidateResources extends Resources {\n async create(options?: any): Promise<ValidateFileResponseBody> {\n const request = new ValidateFileRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkFileResource extends Resource {\n validate(): SdkFileValidateResources {\n return new SdkFileValidateResources(this.getSession(), this.pathParameters)\n }\n}\n\nexport class SdkInvitationUsersResources extends Resources {\n async create(options?: any): Promise<CreateUserByInvitationIdResponseBody> {\n const request = new CreateUserByInvitationIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkInvitationResource extends Resource {\n users(): SdkInvitationUsersResources {\n return new SdkInvitationUsersResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<DeleteInvitationResponseBody> {\n const request = new DeleteInvitationRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetInvitationResponseBody> {\n const request = new GetInvitationRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkJobResource extends Resource {\n async delete(options?: any): Promise<DeleteJobResponseBody> {\n const request = new DeleteJobRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetJobResponseBody> {\n const request = new GetJobRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkPrintJobResource extends Resource {\n async delete(options?: any): Promise<DeletePrintJobResponseBody> {\n const request = new DeletePrintJobRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async invoke(options?: any): Promise<InvokePrintJobByJobIdResponseBody> {\n const request = new InvokePrintJobByJobIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkLocationAssetsResources extends Resources {\n async update(\n requestBody: UpdateAssetsLocationsRequestBody,\n options?: any,\n ): Promise<UpdateAssetsLocationsResponseBody> {\n const request = new UpdateAssetsLocationsRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetAssetsByLocationIdQueryStringParameters,\n options?: any,\n ): Promise<GetAssetsByLocationIdResponseBody> {\n const request = new GetAssetsByLocationIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkLocationResource extends Resource {\n assets(): SdkLocationAssetsResources {\n return new SdkLocationAssetsResources(this.getSession(), this.pathParameters)\n }\n\n async delete(\n queryStringParameters: DeleteLocationQueryStringParameters,\n options?: any,\n ): Promise<DeleteLocationResponseBody> {\n const request = new DeleteLocationRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateLocationRequestBody, options?: any): Promise<UpdateLocationResponseBody> {\n const request = new UpdateLocationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkSupportResources extends Resources {\n async create(requestBody: SendSupportEmailRequestBody, options?: any): Promise<any> {\n const request = new SendSupportEmailRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkPricePlansResources extends Resources {\n async get(options?: any): Promise<GetPricePlansResponseBody> {\n const request = new GetPricePlansRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkProjectCustomDomainResource extends Resource {\n async create(options?: any): Promise<AssignDomainToProjectResponseBody> {\n const request = new AssignDomainToProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkProjectJobsAssetbatchvalidationResources extends Resources {\n async create(\n requestBody: CreateAssetBatchValidationJobByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateAssetBatchValidationJobByProjectIdResponseBody> {\n const request = new CreateAssetBatchValidationJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectAssetsResources extends Resources {\n async create(\n requestBody: CreateAssetByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateAssetByProjectIdResponseBody> {\n const request = new CreateAssetByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetAssetsByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetAssetsByProjectIdResponseBody> {\n const request = new GetAssetsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectJobsAssetbatchResources extends Resources {\n async create(\n requestBody: CreateAssetCreationJobByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateAssetCreationJobByProjectIdResponseBody> {\n const request = new CreateAssetCreationJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectPresignedurlJobsAssetbatchResources extends Resources {\n async create(\n requestBody: CreateAssetCreationPresignedUrlRequestBody,\n options?: any,\n ): Promise<CreateAssetCreationPresignedUrlResponseBody> {\n const request = new CreateAssetCreationPresignedUrlRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectAssetgraphsResources extends Resources {\n async create(\n requestBody: CreateAssetGraphByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateAssetGraphByProjectIdResponseBody> {\n const request = new CreateAssetGraphByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetAssetGraphsByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetAssetGraphsByProjectIdResponseBody> {\n const request = new GetAssetGraphsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectAssetsBatchResources extends Resources {\n async create(\n requestBody: CreateAssetsByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateAssetsByProjectIdResponseBody> {\n const request = new CreateAssetsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectContactsResources extends Resources {\n async create(\n requestBody: CreateContactByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateContactByProjectIdResponseBody> {\n const request = new CreateContactByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetContactsByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetContactsByProjectIdResponseBody> {\n const request = new GetContactsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectContactsBatchResources extends Resources {\n async create(\n requestBody: CreateContactsByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateContactsByProjectIdResponseBody> {\n const request = new CreateContactsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async delete(\n queryStringParameters: DeleteContactsByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<DeleteContactsByProjectIdResponseBody> {\n const request = new DeleteContactsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectPrintResources extends Resources {\n async create(\n requestBody: CreatePrintJobByProjectIdRequestBody,\n options?: any,\n ): Promise<CreatePrintJobByProjectIdResponseBody> {\n const request = new CreatePrintJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectQrCodesResources extends Resources {\n async create(\n requestBody: CreateQrCodeByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateQrCodeByProjectIdResponseBody> {\n const request = new CreateQrCodeByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetQrCodesByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetQrCodesByProjectIdResponseBody> {\n const request = new GetQrCodesByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectSelfqueueprintResources extends Resources {\n async create(\n requestBody: CreateSelfQueuePrintJobByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateSelfQueuePrintJobByProjectIdResponseBody> {\n const request = new CreateSelfQueuePrintJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectSmsTemplatesResources extends Resources {\n async create(\n requestBody: CreateSmsTemplateByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateSmsTemplateByProjectIdResponseBody> {\n const request = new CreateSmsTemplateByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetSmsTemplatesByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetSmsTemplatesByProjectIdResponseBody> {\n const request = new GetSmsTemplatesByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectPrintJobsResources extends Resources {\n async create(\n requestBody: CreateTemplatedPrintJobByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateTemplatedPrintJobByProjectIdResponseBody> {\n const request = new CreateTemplatedPrintJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectTemplatedPrintPreviewResources extends Resources {\n async create(\n requestBody: CreateTemplatedPrintPreviewByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateTemplatedPrintPreviewByProjectIdResponseBody> {\n const request = new CreateTemplatedPrintPreviewByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectWebsessionsExportResources extends Resources {\n async create(\n requestBody: CreateWebSessionExportByProjectIdRequestBody,\n options?: any,\n ): Promise<CreateWebSessionExportByProjectIdResponseBody> {\n const request = new CreateWebSessionExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectSmsTemplateResource extends Resource {\n async delete(options?: any): Promise<DeleteSmsTemplateByProjectIdResponseBody> {\n const request = new DeleteSmsTemplateByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetSmsTemplateByProjectIdResponseBody> {\n const request = new GetSmsTemplateByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateSmsTemplateRequestBody, options?: any): Promise<UpdateSmsTemplateResponseBody> {\n const request = new UpdateSmsTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectAdvancedAssetsReportResources extends Resources {\n async get(\n queryStringParameters: GetAdvancedAssetReportByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetAdvancedAssetReportByProjectIdResponseBody> {\n const request = new GetAdvancedAssetReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectAdvancedContactsReportResources extends Resources {\n async get(\n queryStringParameters: GetAdvancedContactReportByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetAdvancedContactReportByProjectIdResponseBody> {\n const request = new GetAdvancedContactReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectAdvancedScansReportResources extends Resources {\n async get(\n queryStringParameters: GetAdvancedScanReportByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetAdvancedScanReportByProjectIdResponseBody> {\n const request = new GetAdvancedScanReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectExportResources extends Resources {\n async create(\n requestBody: GetAllExportsByProjectIdRequestBody,\n options?: any,\n ): Promise<GetAllExportsByProjectIdResponseBody> {\n const request = new GetAllExportsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectAssetsExportResources extends Resources {\n async create(\n requestBody: GetAssetExportByProjectIdRequestBody,\n options?: any,\n ): Promise<GetAssetExportByProjectIdResponseBody> {\n const request = new GetAssetExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectBasicAssetsReportResources extends Resources {\n async get(options?: any): Promise<GetBasicAssetReportByProjectIdResponseBody> {\n const request = new GetBasicAssetReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkProjectBasicContactsReportResources extends Resources {\n async get(options?: any): Promise<GetBasicContactReportByProjectIdResponseBody> {\n const request = new GetBasicContactReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkProjectBatchResources extends Resources {\n async get(\n queryStringParameters: GetBatchesByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetBatchesByProjectIdResponseBody> {\n const request = new GetBatchesByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectConsentResources extends Resources {\n async get(\n queryStringParameters: GetConsentByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetConsentByProjectIdResponseBody> {\n const request = new GetConsentByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectContactsExportResources extends Resources {\n async create(\n requestBody: GetContactExportByProjectIdRequestBody,\n options?: any,\n ): Promise<GetContactExportByProjectIdResponseBody> {\n const request = new GetContactExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectAssetsMostscannedResources extends Resources {\n async get(\n queryStringParameters: GetMostScannedAssetsByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetMostScannedAssetsByProjectIdResponseBody> {\n const request = new GetMostScannedAssetsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectExportQrCodesScansResources extends Resources {\n async create(\n requestBody: GetQrCodeScansExportByProjectIdRequestBody,\n options?: any,\n ): Promise<GetQrCodeScansExportByProjectIdResponseBody> {\n const request = new GetQrCodeScansExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectScansDayofweekResources extends Resources {\n async get(\n queryStringParameters: GetScanDayOfWeekByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetScanDayOfWeekByProjectIdResponseBody> {\n const request = new GetScanDayOfWeekByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectScansExportResources extends Resources {\n async create(\n requestBody: GetScanExportByProjectIdRequestBody,\n options?: any,\n ): Promise<GetScanExportByProjectIdResponseBody> {\n const request = new GetScanExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkProjectScansTimeofdayResources extends Resources {\n async get(\n queryStringParameters: GetScanTimeOfDayByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetScanTimeOfDayByProjectIdResponseBody> {\n const request = new GetScanTimeOfDayByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectScansTimelineResources extends Resources {\n async get(\n queryStringParameters: GetScanTimelineByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetScanTimelineByProjectIdResponseBody> {\n const request = new GetScanTimelineByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectScansResources extends Resources {\n async get(\n queryStringParameters: GetScansByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetScansByProjectIdResponseBody> {\n const request = new GetScansByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectUsermediasResources extends Resources {\n async get(\n queryStringParameters: GetUserMediasByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetUserMediasByProjectIdResponseBody> {\n const request = new GetUserMediasByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectWebsessionsTimelineResources extends Resources {\n async get(\n queryStringParameters: GetWebSessionsTimelineByProjectIdQueryStringParameters,\n options?: any,\n ): Promise<GetWebSessionsTimelineByProjectIdResponseBody> {\n const request = new GetWebSessionsTimelineByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkProjectResource extends Resource {\n customDomain(customDomain: string): SdkProjectCustomDomainResource {\n return new SdkProjectCustomDomainResource(this.getSession(), {...this.pathParameters, customDomain})\n }\n\n jobsAssetbatchvalidation(): SdkProjectJobsAssetbatchvalidationResources {\n return new SdkProjectJobsAssetbatchvalidationResources(this.getSession(), this.pathParameters)\n }\n\n assets(): SdkProjectAssetsResources {\n return new SdkProjectAssetsResources(this.getSession(), this.pathParameters)\n }\n\n jobsAssetbatch(): SdkProjectJobsAssetbatchResources {\n return new SdkProjectJobsAssetbatchResources(this.getSession(), this.pathParameters)\n }\n\n presignedurlJobsAssetbatch(): SdkProjectPresignedurlJobsAssetbatchResources {\n return new SdkProjectPresignedurlJobsAssetbatchResources(this.getSession(), this.pathParameters)\n }\n\n assetgraphs(): SdkProjectAssetgraphsResources {\n return new SdkProjectAssetgraphsResources(this.getSession(), this.pathParameters)\n }\n\n assetsBatch(): SdkProjectAssetsBatchResources {\n return new SdkProjectAssetsBatchResources(this.getSession(), this.pathParameters)\n }\n\n contacts(): SdkProjectContactsResources {\n return new SdkProjectContactsResources(this.getSession(), this.pathParameters)\n }\n\n contactsBatch(): SdkProjectContactsBatchResources {\n return new SdkProjectContactsBatchResources(this.getSession(), this.pathParameters)\n }\n\n print(): SdkProjectPrintResources {\n return new SdkProjectPrintResources(this.getSession(), this.pathParameters)\n }\n\n qrCodes(): SdkProjectQrCodesResources {\n return new SdkProjectQrCodesResources(this.getSession(), this.pathParameters)\n }\n\n selfqueueprint(): SdkProjectSelfqueueprintResources {\n return new SdkProjectSelfqueueprintResources(this.getSession(), this.pathParameters)\n }\n\n smsTemplates(): SdkProjectSmsTemplatesResources {\n return new SdkProjectSmsTemplatesResources(this.getSession(), this.pathParameters)\n }\n\n printJobs(): SdkProjectPrintJobsResources {\n return new SdkProjectPrintJobsResources(this.getSession(), this.pathParameters)\n }\n\n templatedPrintPreview(): SdkProjectTemplatedPrintPreviewResources {\n return new SdkProjectTemplatedPrintPreviewResources(this.getSession(), this.pathParameters)\n }\n\n websessionsExport(): SdkProjectWebsessionsExportResources {\n return new SdkProjectWebsessionsExportResources(this.getSession(), this.pathParameters)\n }\n\n smsTemplate(smsTemplateName: string): SdkProjectSmsTemplateResource {\n return new SdkProjectSmsTemplateResource(this.getSession(), {...this.pathParameters, smsTemplateName})\n }\n\n advancedAssetsReport(): SdkProjectAdvancedAssetsReportResources {\n return new SdkProjectAdvancedAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedContactsReport(): SdkProjectAdvancedContactsReportResources {\n return new SdkProjectAdvancedContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedScansReport(): SdkProjectAdvancedScansReportResources {\n return new SdkProjectAdvancedScansReportResources(this.getSession(), this.pathParameters)\n }\n\n export(): SdkProjectExportResources {\n return new SdkProjectExportResources(this.getSession(), this.pathParameters)\n }\n\n assetsExport(): SdkProjectAssetsExportResources {\n return new SdkProjectAssetsExportResources(this.getSession(), this.pathParameters)\n }\n\n basicAssetsReport(): SdkProjectBasicAssetsReportResources {\n return new SdkProjectBasicAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n basicContactsReport(): SdkProjectBasicContactsReportResources {\n return new SdkProjectBasicContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n batch(): SdkProjectBatchResources {\n return new SdkProjectBatchResources(this.getSession(), this.pathParameters)\n }\n\n consent(): SdkProjectConsentResources {\n return new SdkProjectConsentResources(this.getSession(), this.pathParameters)\n }\n\n contactsExport(): SdkProjectContactsExportResources {\n return new SdkProjectContactsExportResources(this.getSession(), this.pathParameters)\n }\n\n assetsMostscanned(): SdkProjectAssetsMostscannedResources {\n return new SdkProjectAssetsMostscannedResources(this.getSession(), this.pathParameters)\n }\n\n exportQrCodesScans(): SdkProjectExportQrCodesScansResources {\n return new SdkProjectExportQrCodesScansResources(this.getSession(), this.pathParameters)\n }\n\n scansDayofweek(): SdkProjectScansDayofweekResources {\n return new SdkProjectScansDayofweekResources(this.getSession(), this.pathParameters)\n }\n\n scansExport(): SdkProjectScansExportResources {\n return new SdkProjectScansExportResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeofday(): SdkProjectScansTimeofdayResources {\n return new SdkProjectScansTimeofdayResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeline(): SdkProjectScansTimelineResources {\n return new SdkProjectScansTimelineResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkProjectScansResources {\n return new SdkProjectScansResources(this.getSession(), this.pathParameters)\n }\n\n usermedias(): SdkProjectUsermediasResources {\n return new SdkProjectUsermediasResources(this.getSession(), this.pathParameters)\n }\n\n websessionsTimeline(): SdkProjectWebsessionsTimelineResources {\n return new SdkProjectWebsessionsTimelineResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<DeleteProjectResponseBody> {\n const request = new DeleteProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetProjectByProjectIdResponseBody> {\n const request = new GetProjectByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(\n requestBody: UpdateProjectByProjectIdRequestBody,\n options?: any,\n ): Promise<UpdateProjectByProjectIdResponseBody> {\n const request = new UpdateProjectByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkQrcodelinkResource extends Resource {\n async get(options?: any): Promise<GetQrCodeLinkResponseBody> {\n const request = new GetQrCodeLinkRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkQrcodelogoResource extends Resource {\n async get(options?: any): Promise<GetQrCodeLogoByQrCodeLogoIdResponseBody> {\n const request = new GetQrCodeLogoByQrCodeLogoIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(\n requestBody: UpdateQrCodeLogoByQrCodeLogoIdRequestBody,\n options?: any,\n ): Promise<UpdateQrCodeLogoByQrCodeLogoIdResponseBody> {\n const request = new UpdateQrCodeLogoByQrCodeLogoIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkQrCodeLinksResources extends Resources {\n async create(requestBody: CreateLinkByQrCodeRequestBody, options?: any): Promise<CreateLinkByQrCodeResponseBody> {\n const request = new CreateLinkByQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetLinksByQrCodeResponseBody> {\n const request = new GetLinksByQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkQrCodeLinkResource extends Resource {\n async delete(options?: any): Promise<any> {\n const request = new DeleteLinkByQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkQrCodeResource extends Resource {\n links(): SdkQrCodeLinksResources {\n return new SdkQrCodeLinksResources(this.getSession(), this.pathParameters)\n }\n\n link(link: string): SdkQrCodeLinkResource {\n return new SdkQrCodeLinkResource(this.getSession(), {...this.pathParameters, link})\n }\n\n async delete(options?: any): Promise<DeleteQrCodeResponseBody> {\n const request = new DeleteQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(queryStringParameters: GetQrCodeQueryStringParameters, options?: any): Promise<GetQrCodeResponseBody> {\n const request = new GetQrCodeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateQrCodeRequestBody, options?: any): Promise<UpdateQrCodeResponseBody> {\n const request = new UpdateQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkScanContactsResources extends Resources {\n async create(\n requestBody: CreateContactByScanIdRequestBody,\n options?: any,\n ): Promise<CreateContactByScanIdResponseBody> {\n const request = new CreateContactByScanIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkScanEmailResources extends Resources {\n async send(requestBody: SendEmailByScanIdRequestBody, options?: any): Promise<any> {\n const request = new SendEmailByScanIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkScanSmsResources extends Resources {\n async send(requestBody: SendSmsByScanIdRequestBody, options?: any): Promise<SendSmsByScanIdResponseBody> {\n const request = new SendSmsByScanIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkScanCustomAttributeResources extends Resources {\n async update(\n requestBody: UpdateScanCustomAttributeRequestBody,\n options?: any,\n ): Promise<UpdateScanCustomAttributeResponseBody> {\n const request = new UpdateScanCustomAttributeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkScanResource extends Resource {\n contacts(): SdkScanContactsResources {\n return new SdkScanContactsResources(this.getSession(), this.pathParameters)\n }\n\n email(): SdkScanEmailResources {\n return new SdkScanEmailResources(this.getSession(), this.pathParameters)\n }\n\n sms(): SdkScanSmsResources {\n return new SdkScanSmsResources(this.getSession(), this.pathParameters)\n }\n\n customAttribute(): SdkScanCustomAttributeResources {\n return new SdkScanCustomAttributeResources(this.getSession(), this.pathParameters)\n }\n\n async get(queryStringParameters: GetScanQueryStringParameters, options?: any): Promise<GetScanResponseBody> {\n const request = new GetScanRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: SaveGeolocationByScanIdRequestBody, options?: any): Promise<any> {\n const request = new SaveGeolocationByScanIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkPrintPageTemplateResource extends Resource {\n async delete(options?: any): Promise<any> {\n const request = new DeletePrintPageTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetPrintPageTemplateResponseBody> {\n const request = new GetPrintPageTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(\n requestBody: UpdatePrintPageTemplateRequestBody,\n options?: any,\n ): Promise<UpdatePrintPageTemplateResponseBody> {\n const request = new UpdatePrintPageTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkPrintStickerTemplateResource extends Resource {\n async delete(options?: any): Promise<any> {\n const request = new DeletePrintStickerTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetPrintStickerTemplateResponseBody> {\n const request = new GetPrintStickerTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(\n requestBody: UpdatePrintStickerTemplateRequestBody,\n options?: any,\n ): Promise<UpdatePrintStickerTemplateResponseBody> {\n const request = new UpdatePrintStickerTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkStylingtemplateResource extends Resource {\n async delete(options?: any): Promise<DeleteQrCodeStylingTemplateByStylingTemplateIdResponseBody> {\n const request = new DeleteQrCodeStylingTemplateByStylingTemplateIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetQrCodeStylingTemplateByStylingTemplateIdResponseBody> {\n const request = new GetQrCodeStylingTemplateByStylingTemplateIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(\n requestBody: UpdateQrCodeStylingTemplateByStylingTemplateIdRequestBody,\n options?: any,\n ): Promise<UpdateQrCodeStylingTemplateByStylingTemplateIdResponseBody> {\n const request = new UpdateQrCodeStylingTemplateByStylingTemplateIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkUsermediaMultipartResources extends Resources {\n async create(\n requestBody: CompleteUserMediaMultipartUploadRequestBody,\n options?: any,\n ): Promise<CompleteUserMediaMultipartUploadResponseBody> {\n const request = new CompleteUserMediaMultipartUploadRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkUsermediaAssetResource extends Resource {\n async link(requestBody: UnlinkMediasRequestBody, options?: any): Promise<UnlinkMediasResponseBody> {\n const request = new UnlinkMediasRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async unlink(options?: any): Promise<UnlinkMediaToAssetResponseBody> {\n const request = new UnlinkMediaToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkUsermediaProjectResource extends Resource {\n async link(options?: any): Promise<LinkMediaToProjectResponseBody> {\n const request = new LinkMediaToProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async unlink(options?: any): Promise<UnlinkMediaToProjectResponseBody> {\n const request = new UnlinkMediaToProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkUsermediaScanResource extends Resource {\n async link(options?: any): Promise<LinkMediaToScanResponseBody> {\n const request = new LinkMediaToScanRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async unlink(options?: any): Promise<UnlinkMediaToScanResponseBody> {\n const request = new UnlinkMediaToScanRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkUsermediaResource extends Resource {\n multipart(): SdkUsermediaMultipartResources {\n return new SdkUsermediaMultipartResources(this.getSession(), this.pathParameters)\n }\n\n asset(assetId: string): SdkUsermediaAssetResource {\n return new SdkUsermediaAssetResource(this.getSession(), {...this.pathParameters, assetId})\n }\n\n project(projectId: string): SdkUsermediaProjectResource {\n return new SdkUsermediaProjectResource(this.getSession(), {...this.pathParameters, projectId})\n }\n\n scan(scanId: string): SdkUsermediaScanResource {\n return new SdkUsermediaScanResource(this.getSession(), {...this.pathParameters, scanId})\n }\n\n async get(options?: any): Promise<GetMediaResponseBody> {\n const request = new GetMediaRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateMediaRequestBody, options?: any): Promise<UpdateMediaResponseBody> {\n const request = new UpdateMediaRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkUserrolesResources extends Resources {\n async get(options?: any): Promise<GetUserRolesResponseBody> {\n const request = new GetUserRolesRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkUserAccountsResources extends Resources {\n async create(\n requestBody: CreateAccountByUserIdRequestBody,\n options?: any,\n ): Promise<CreateAccountByUserIdResponseBody> {\n const request = new CreateAccountByUserIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(\n queryStringParameters: GetAccountsByUserIdQueryStringParameters,\n options?: any,\n ): Promise<GetAccountsByUserIdResponseBody> {\n const request = new GetAccountsByUserIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkUserErrorsResources extends Resources {\n async get(\n queryStringParameters: GetErrorsByUserIdQueryStringParameters,\n options?: any,\n ): Promise<GetErrorsByUserIdResponseBody> {\n const request = new GetErrorsByUserIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkUserInvitationsResources extends Resources {\n async get(\n queryStringParameters: GetInvitationsByUserIdQueryStringParameters,\n options?: any,\n ): Promise<GetInvitationsByUserIdResponseBody> {\n const request = new GetInvitationsByUserIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkUserPathSettingsResources extends Resources {\n async get(options?: any): Promise<GetUserSettingsByUserIdResponseBody> {\n const request = new GetUserSettingsByUserIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(\n requestBody: SetUserSettingsByUserIdRequestBody,\n options?: any,\n ): Promise<SetUserSettingsByUserIdResponseBody> {\n const request = new SetUserSettingsByUserIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkUserPathResource extends Resource {\n settings(): SdkUserPathSettingsResources {\n return new SdkUserPathSettingsResources(this.getSession(), this.pathParameters)\n }\n}\n\nexport class SdkUserResource extends Resource {\n accounts(): SdkUserAccountsResources {\n return new SdkUserAccountsResources(this.getSession(), this.pathParameters)\n }\n\n errors(): SdkUserErrorsResources {\n return new SdkUserErrorsResources(this.getSession(), this.pathParameters)\n }\n\n invitations(): SdkUserInvitationsResources {\n return new SdkUserInvitationsResources(this.getSession(), this.pathParameters)\n }\n\n path(path: string): SdkUserPathResource {\n return new SdkUserPathResource(this.getSession(), {...this.pathParameters, path})\n }\n\n async get(options?: any): Promise<GetUserResponseBody> {\n const request = new GetUserRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUserRequestBody, options?: any): Promise<UpdateUserResponseBody> {\n const request = new UpdateUserRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkWebhookSmsResources extends Resources {\n async create(options?: any): Promise<any> {\n const request = new CreateSmsResponseRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkWebhookExportJobResolutionResources extends Resources {\n async create(requestBody: ExportJobResolutionRequestBody, options?: any): Promise<ExportJobResolutionResponseBody> {\n const request = new ExportJobResolutionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkWebhookSmsStatusResources extends Resources {\n async create(options?: any): Promise<any> {\n const request = new SmsStatusUpdateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkWebhookStripeResources extends Resources {\n async create(requestBody: StripeEventRequestBody, options?: any): Promise<any> {\n const request = new StripeEventRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkWebsessionSessionactionsResources extends Resources {\n async create(requestBody: CreateSessionActionsRequestBody, options?: any): Promise<CreateSessionActionsResponseBody> {\n const request = new CreateSessionActionsRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkWebsessionResource extends Resource {\n sessionactions(): SdkWebsessionSessionactionsResources {\n return new SdkWebsessionSessionactionsResources(this.getSession(), this.pathParameters)\n }\n\n async get(\n queryStringParameters: GetWebSessionQueryStringParameters,\n options?: any,\n ): Promise<GetWebSessionResponseBody> {\n const request = new GetWebSessionRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateWebSessionRequestBody, options?: any): Promise<UpdateWebSessionResponseBody> {\n const request = new UpdateWebSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkPasswordAuthUserResources extends Resources {\n async create(requestBody: ChangePasswordRequestBody, options?: any): Promise<RefreshSessionUserSessionResponseBody> {\n const request = new ChangePasswordRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkAuthSessionResources extends Resources {\n async get(options?: any): Promise<RefreshSessionUserSessionResponseBody> {\n const request = new DeleteSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async create(options?: any): Promise<RefreshSessionUserSessionResponseBody> {\n const request = new GetSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkAuthConfirmResources extends Resources {\n async get(queryStringParameters: ConfirmQueryStringParameters, options?: any): Promise<any> {\n const request = new ConfirmRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkInvitedAuthConfirmResources extends Resources {\n async get(queryStringParameters: ConfirmInvitedQueryStringParameters, options?: any): Promise<any> {\n const request = new ConfirmInvitedRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n}\n\nexport class SdkAuthUserResources extends Resources {\n async create(requestBody: CreateUserRequestBody, options?: any): Promise<any> {\n const request = new CreateUserRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkRefreshAuthSessionResources extends Resources {\n async create(options?: any): Promise<RefreshSessionUserSessionResponseBody> {\n const request = new RefreshSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkConfirmationAuthUserResources extends Resources {\n async resend(requestBody: ResendConfirmationRequestBody, options?: any): Promise<any> {\n const request = new ResendConfirmationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkResetAuthUserResources extends Resources {\n async reset(requestBody: ResetPasswordRequestBody, options?: any): Promise<any> {\n const request = new ResetPasswordRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n}\n\nexport class SdkCompanyAuthSsoSamlAcsResources extends Resources {\n async create(options?: any): Promise<any> {\n const request = new SamlAcsRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkCompanyAuthSsoResource extends Resource {\n samlAcs(): SdkCompanyAuthSsoSamlAcsResources {\n return new SdkCompanyAuthSsoSamlAcsResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<SignOnResponseBody> {\n const request = new SignOnRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n}\n\nexport class SdkResources extends Resources {\n account(accountId: string): SdkAccountResource {\n return new SdkAccountResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n apikey(apiKeyId: string): SdkApikeyResource {\n return new SdkApikeyResource(this.getSession(), {...this.pathParameters, apiKeyId})\n }\n\n app(appId: string): SdkAppResource {\n return new SdkAppResource(this.getSession(), {...this.pathParameters, appId})\n }\n\n apps(): SdkAppsResources {\n return new SdkAppsResources(this.getSession(), this.pathParameters)\n }\n\n appsPublished(): SdkAppsPublishedResources {\n return new SdkAppsPublishedResources(this.getSession(), this.pathParameters)\n }\n\n appsAccount(appAccountId: string): SdkAppsAccountResource {\n return new SdkAppsAccountResource(this.getSession(), {...this.pathParameters, appAccountId})\n }\n\n assetgraph(assetGraphId: string): SdkAssetgraphResource {\n return new SdkAssetgraphResource(this.getSession(), {...this.pathParameters, assetGraphId})\n }\n\n assettype(assetTypeId: string): SdkAssettypeResource {\n return new SdkAssettypeResource(this.getSession(), {...this.pathParameters, assetTypeId})\n }\n\n asset(assetId: string): SdkAssetResource {\n return new SdkAssetResource(this.getSession(), {...this.pathParameters, assetId})\n }\n\n batch(batchId: string): SdkBatchResource {\n return new SdkBatchResource(this.getSession(), {...this.pathParameters, batchId})\n }\n\n billingCancelDowngrade(accountId: string): SdkBillingCancelDowngradeResource {\n return new SdkBillingCancelDowngradeResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingCancelSubscription(accountId: string): SdkBillingCancelSubscriptionResource {\n return new SdkBillingCancelSubscriptionResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n upgradePlanBillingPreview(accountId: string): SdkUpgradePlanBillingPreviewResource {\n return new SdkUpgradePlanBillingPreviewResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingSetupIntent(accountId: string): SdkBillingSetupIntentResource {\n return new SdkBillingSetupIntentResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingDowngradePlan(accountId: string): SdkBillingDowngradePlanResource {\n return new SdkBillingDowngradePlanResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingDetail(accountId: string): SdkBillingDetailResource {\n return new SdkBillingDetailResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingCurrentPeriod(accountId: string): SdkBillingCurrentPeriodResource {\n return new SdkBillingCurrentPeriodResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingInvoice(accountId: string): SdkBillingInvoiceResource {\n return new SdkBillingInvoiceResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingUpgradePlan(accountId: string): SdkBillingUpgradePlanResource {\n return new SdkBillingUpgradePlanResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n careAccounts(): SdkCareAccountsResources {\n return new SdkCareAccountsResources(this.getSession(), this.pathParameters)\n }\n\n contact(contactId: string): SdkContactResource {\n return new SdkContactResource(this.getSession(), {...this.pathParameters, contactId})\n }\n\n customdomain(customDomain: string): SdkCustomdomainResource {\n return new SdkCustomdomainResource(this.getSession(), {...this.pathParameters, customDomain})\n }\n\n file(fileId: string): SdkFileResource {\n return new SdkFileResource(this.getSession(), {...this.pathParameters, fileId})\n }\n\n invitation(invitationId: string): SdkInvitationResource {\n return new SdkInvitationResource(this.getSession(), {...this.pathParameters, invitationId})\n }\n\n job(jobId: string): SdkJobResource {\n return new SdkJobResource(this.getSession(), {...this.pathParameters, jobId})\n }\n\n printJob(printJobId: string): SdkPrintJobResource {\n return new SdkPrintJobResource(this.getSession(), {...this.pathParameters, printJobId})\n }\n\n location(locationId: string): SdkLocationResource {\n return new SdkLocationResource(this.getSession(), {...this.pathParameters, locationId})\n }\n\n support(): SdkSupportResources {\n return new SdkSupportResources(this.getSession(), this.pathParameters)\n }\n\n pricePlans(): SdkPricePlansResources {\n return new SdkPricePlansResources(this.getSession(), this.pathParameters)\n }\n\n project(projectId: string): SdkProjectResource {\n return new SdkProjectResource(this.getSession(), {...this.pathParameters, projectId})\n }\n\n qrcodelink(qrCodeLink: string): SdkQrcodelinkResource {\n return new SdkQrcodelinkResource(this.getSession(), {...this.pathParameters, qrCodeLink})\n }\n\n qrcodelogo(qrCodeLogoId: string): SdkQrcodelogoResource {\n return new SdkQrcodelogoResource(this.getSession(), {...this.pathParameters, qrCodeLogoId})\n }\n\n qrCode(qrCodeId: string): SdkQrCodeResource {\n return new SdkQrCodeResource(this.getSession(), {...this.pathParameters, qrCodeId})\n }\n\n scan(scanId: string): SdkScanResource {\n return new SdkScanResource(this.getSession(), {...this.pathParameters, scanId})\n }\n\n printPageTemplate(printPageTemplateId: string): SdkPrintPageTemplateResource {\n return new SdkPrintPageTemplateResource(this.getSession(), {...this.pathParameters, printPageTemplateId})\n }\n\n printStickerTemplate(printStickerTemplateId: string): SdkPrintStickerTemplateResource {\n return new SdkPrintStickerTemplateResource(this.getSession(), {...this.pathParameters, printStickerTemplateId})\n }\n\n stylingtemplate(stylingTemplateId: string): SdkStylingtemplateResource {\n return new SdkStylingtemplateResource(this.getSession(), {...this.pathParameters, stylingTemplateId})\n }\n\n usermedia(mediaId: string): SdkUsermediaResource {\n return new SdkUsermediaResource(this.getSession(), {...this.pathParameters, mediaId})\n }\n\n userroles(): SdkUserrolesResources {\n return new SdkUserrolesResources(this.getSession(), this.pathParameters)\n }\n\n user(userId: string): SdkUserResource {\n return new SdkUserResource(this.getSession(), {...this.pathParameters, userId})\n }\n\n webhookSms(): SdkWebhookSmsResources {\n return new SdkWebhookSmsResources(this.getSession(), this.pathParameters)\n }\n\n webhookExportJobResolution(): SdkWebhookExportJobResolutionResources {\n return new SdkWebhookExportJobResolutionResources(this.getSession(), this.pathParameters)\n }\n\n webhookSmsStatus(): SdkWebhookSmsStatusResources {\n return new SdkWebhookSmsStatusResources(this.getSession(), this.pathParameters)\n }\n\n webhookStripe(): SdkWebhookStripeResources {\n return new SdkWebhookStripeResources(this.getSession(), this.pathParameters)\n }\n\n websession(sessionId: string): SdkWebsessionResource {\n return new SdkWebsessionResource(this.getSession(), {...this.pathParameters, sessionId})\n }\n\n passwordAuthUser(): SdkPasswordAuthUserResources {\n return new SdkPasswordAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n authSession(): SdkAuthSessionResources {\n return new SdkAuthSessionResources(this.getSession(), this.pathParameters)\n }\n\n authConfirm(): SdkAuthConfirmResources {\n return new SdkAuthConfirmResources(this.getSession(), this.pathParameters)\n }\n\n invitedAuthConfirm(): SdkInvitedAuthConfirmResources {\n return new SdkInvitedAuthConfirmResources(this.getSession(), this.pathParameters)\n }\n\n authUser(): SdkAuthUserResources {\n return new SdkAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n refreshAuthSession(): SdkRefreshAuthSessionResources {\n return new SdkRefreshAuthSessionResources(this.getSession(), this.pathParameters)\n }\n\n confirmationAuthUser(): SdkConfirmationAuthUserResources {\n return new SdkConfirmationAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n resetAuthUser(): SdkResetAuthUserResources {\n return new SdkResetAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n companyAuthSso(companyName: string): SdkCompanyAuthSsoResource {\n return new SdkCompanyAuthSsoResource(this.getSession(), {...this.pathParameters, companyName})\n }\n}\n","import axios, {AxiosInstance} from 'axios'\nimport {SdkResources} from './sdk'\nimport {ICloudConfig} from './cloud-config'\nimport {IConfig} from './config'\nimport {IOpenscreenSession} from './openscreen-session'\nimport {OpenscreenUser, SignUpUser} from './user'\n\nconst ProdConfigurationPath = 'internal-JG0adajZUHU'\n\nasync function getCloudConfig(pathToConfig: string): Promise<ICloudConfig> {\n const thisAxios = axios.create({\n baseURL: 'https://config.openscreen.com',\n timeout: 25000,\n responseType: 'json',\n maxContentLength: 10 * 1024,\n maxBodyLength: 10 * 1024,\n maxRedirects: 1,\n decompress: true,\n })\n const response = await thisAxios.get(`${pathToConfig}.json`).catch((err: {message: any}) => {\n throw new Error(`Openscreen: unable to load cloud configuration '${pathToConfig}': ${err.message}`)\n })\n const {data} = response\n return data as ICloudConfig\n}\n\nclass NullSession implements IOpenscreenSession {\n public debugConfig = false\n public debugAuth = false\n public debugRequest = false\n public debugResponse = false\n public debugError = false\n public debugQuery = false\n public debugOptions = false\n public exp = 0\n getConfig(): IConfig {\n throw Error('no session')\n }\n\n getCloudConfig(): Promise<ICloudConfig> {\n throw Error('no session')\n }\n\n getAxios(): Promise<AxiosInstance> {\n throw Error('no session')\n }\n\n authorize(): Promise<void> {\n throw Error('no session')\n }\n\n getUser(): OpenscreenUser {\n throw Error('no session')\n }\n\n getSignedInUser(): Promise<OpenscreenUser | undefined> {\n throw Error('no session')\n }\n\n signUpUser(): Promise<boolean> {\n throw Error('no session')\n }\n\n changePassword(): Promise<boolean> {\n throw Error('no session')\n }\n\n signOut(): Promise<void> {\n throw Error('no session')\n }\n}\n\nexport class Openscreen extends SdkResources implements IOpenscreenSession {\n protected _config?: IConfig\n protected cloudConfigName?: string\n protected cloudConfig?: Promise<ICloudConfig>\n protected axios?: AxiosInstance\n public debugConfig: boolean = false\n public debugAuth: boolean = false\n public debugRequest: boolean = false\n public debugResponse: boolean = false\n public debugError: boolean = false\n public debugQuery: boolean = false\n public debugOptions: boolean = false\n public exp: number\n protected _user: OpenscreenUser\n\n constructor() {\n super(new NullSession(), {})\n this.exp = 0\n let {OS_DEBUG} = process.env\n if (OS_DEBUG) {\n console.log(`OS_DEBUG=${OS_DEBUG}`)\n OS_DEBUG = OS_DEBUG.toLowerCase()\n let debug\n switch (OS_DEBUG) {\n case 'all':\n this.debugConfig = true\n this.debugAuth = true\n this.debugRequest = true\n this.debugResponse = true\n this.debugError = true\n this.debugQuery = true\n this.debugOptions = true\n break\n case 'none':\n case 'off':\n case 'false':\n case '':\n this.debugConfig = false\n this.debugAuth = false\n this.debugRequest = false\n this.debugResponse = false\n this.debugError = false\n this.debugQuery = false\n this.debugOptions = false\n break\n default:\n debug = OS_DEBUG.split(',')\n this.debugConfig = debug.includes('config')\n this.debugAuth = debug.includes('auth')\n this.debugRequest = debug.includes('request')\n this.debugResponse = debug.includes('response')\n this.debugError = debug.includes('error')\n this.debugQuery = debug.includes('query')\n this.debugOptions = debug.includes('options')\n if (\n !(\n this.debugConfig ||\n this.debugAuth ||\n this.debugRequest ||\n this.debugResponse ||\n this.debugError ||\n this.debugQuery ||\n this.debugOptions\n )\n ) {\n console.warn(`Openscreen: OS_DEBUG environment var has invalid value: '${process.env.OS_DEBUG}'`)\n }\n break\n }\n }\n }\n\n getSession() {\n return this\n }\n\n config(config: IConfig): Openscreen {\n if (this._config) {\n throw Error('Openscreen: client is already configured')\n }\n if (config.key) {\n if (!config.secret) {\n throw Error('Openscreen: invalid config, secret is missing')\n }\n } else {\n throw Error('Openscreen: invalid config, provide API key and secret, or email and password')\n }\n if (typeof config.environment === 'string') {\n this.cloudConfigName = config.environment\n } else if (typeof config.environment === 'object') {\n this.cloudConfig = Promise.resolve(config.environment)\n } else {\n this.cloudConfigName = ProdConfigurationPath\n }\n // eslint-disable-next-line no-param-reassign\n this._config = config\n return this\n }\n\n getConfig(): IConfig {\n if (!this._config) {\n throw Error('Openscreen: client must be configured before accessing resources')\n }\n return this._config\n }\n\n async getSignedInUser(environment?: string): Promise<OpenscreenUser | undefined> {\n // sends a request to refresh your current token, returns only if refresh token is valid\n if (environment) this.cloudConfigName = environment\n else this.cloudConfigName = ProdConfigurationPath\n const cloudConfig = await this.getCloudConfig()\n if (this.debugAuth) console.info(`Openscreen AUTH: refreshing using axios cookie`)\n await this.getAxios()\n const res = await this.axios!.post(`${cloudConfig.endpoint}/auth/session/refresh`)\n if (res.status === 403 || res.status === 500) {\n throw Error('Openscreen AUTH: User is not signed in')\n }\n if (res.status === 200) {\n const {expires, user} = res.data\n this._user = user\n if (this.debugAuth) console.info(`Openscreen AUTH: authorized '${user.userId}' until expiry=${expires}`)\n this.exp = expires\n return user\n }\n return\n }\n\n async signUpUser(signUpDetails: SignUpUser, environment?: string): Promise<boolean> {\n // sends a request to refresh your current token, returns only if refresh token is valid\n if (environment) this.cloudConfigName = environment\n else this.cloudConfigName = ProdConfigurationPath\n const cloudConfig = await this.getCloudConfig()\n if (this.debugAuth) console.info(`Openscreen AUTH: signing up User`)\n await this.getAxios()\n const res = await this.axios!.post(`${cloudConfig.endpoint}/auth/user`, signUpDetails)\n if (res.status === 403 || res.status === 500) {\n throw Error('Openscreen AUTH: User Sign Up failed')\n }\n if (res.status === 200 || res.status === 204) {\n if (this.debugAuth) console.info(`Openscreen AUTH: Signed up user`)\n return true\n }\n return false\n }\n\n async checkSession(environment?: string): Promise<boolean> {\n // send request to check session\n if (environment) this.cloudConfigName = environment\n else this.cloudConfigName = ProdConfigurationPath\n const cloudConfig = await this.getCloudConfig()\n if (this.debugAuth) console.info(`Openscreen AUTH: checking session`)\n await this.getAxios()\n const res = await this.axios!.get(`${cloudConfig.endpoint}/auth/session`)\n if (res.status === 403 || res.status === 500) {\n throw Error('Openscreen AUTH: User is not signed in')\n }\n return true\n }\n\n async authorize(): Promise<void> {\n // @TODO get config only if (this.exp > new Date().getTime()) === false\n const cloudConfig = await this.getCloudConfig()\n\n if (this.exp > new Date().getTime()) {\n return\n } else if (this.exp !== 0) {\n //means token expired and session is not brand new\n if (this.debugAuth) console.info(`Openscreen AUTH: refreshing using axios cookie`)\n await this.getAxios()\n const res = await this.axios!.post(`${cloudConfig.endpoint}/auth/session/refresh`)\n if (res.status === 403 || res.status === 500) {\n throw Error('Openscreen AUTH: Refreshing failed, exiting')\n }\n if (res.status === 200) {\n const {expires, user} = res.data\n this._user = user\n if (this.debugAuth) console.info(`Openscreen AUTH: authorized '${user.userId}' until expiry=${expires}`)\n this.exp = expires\n return\n }\n }\n // if code reaches here that means the exp == 0 and its a brand new session so we gotta login\n const config = this.getConfig()\n\n if (this.debugConfig) {\n const c = {...config}\n if (c.secret) c.secret = '*'.repeat(c.secret.length)\n console.debug(`Openscreen CONFIG: ${JSON.stringify(c, null, 2)}`)\n }\n if (this.debugConfig) {\n console.debug(`Openscreen CONFIG: (environment) ${JSON.stringify(cloudConfig, null, 2)}`)\n }\n let key\n let secret\n key = config.key!\n secret = config.secret!\n\n if (this.debugAuth) console.info(`Openscreen AUTH: authorizing '${key}'`)\n await this.getAxios()\n const res = await this.axios!.post(`${cloudConfig.endpoint}/auth/session`, {\n email: key,\n password: secret,\n })\n if (res.status === 403 || res.status === 500) {\n throw Error('Openscreen AUTH: authentication failed')\n }\n if (res.status === 200) {\n const {expires, user} = res.data\n this._user = user\n if (this.debugAuth) console.info(`Openscreen AUTH: authorized '${key}' until expiry=${expires}`)\n this.exp = expires\n }\n }\n\n getUser(): OpenscreenUser {\n return this._user\n }\n\n async getCloudConfig(): Promise<ICloudConfig> {\n if (!this.cloudConfig) {\n if (!this.cloudConfigName) {\n throw Error('Openscreen: environment name missing')\n }\n this.cloudConfig = getCloudConfig(this.cloudConfigName)\n }\n return this.cloudConfig\n }\n\n async getAxios(): Promise<AxiosInstance> {\n if (this.axios) return this.axios\n const cloudConfig = await this.getCloudConfig()\n const config = cloudConfig.axios || {\n timeout: 25000,\n responseType: 'json',\n maxContentLength: 1024 * 1024,\n maxBodyLength: 1024 * 1024,\n maxRedirects: 1,\n decompress: true,\n }\n this.axios = axios.create(config)\n return axios!\n }\n\n async changePassword(oldPassword: string, newPassword: string): Promise<boolean> {\n const cloudConfig = await this.getCloudConfig()\n await this.getAxios()\n const res = await this.axios!.post(`${cloudConfig.endpoint}/auth/user/password`, {\n password: oldPassword,\n newPassword,\n })\n if (res.status === 200) {\n return true\n } else {\n if (this.debugAuth) console.log('password change failed for the current user, got the error', res.data)\n throw new Error('Failed to change password')\n }\n }\n\n async signOut() {\n const cloudConfig = await this.getCloudConfig()\n await this.getAxios()\n const res = await this.axios!.delete(`${cloudConfig.endpoint}/auth/session`)\n if (res.status === 200) return\n if (this.debugAuth) console.log('Sign out failed, response body is ', res.data)\n throw new Error('Failed to sign out')\n }\n}\n"],"names":["Request","constructor","session","routeSegments","this","makeUri","pathParameters","urlParts","getCloudConfig","endpoint","replace","forEach","segment","push","routePart","parm","value","Error","join","debugRequest","method","url","queryParameters","body","options","console","debug","toUpperCase","JSON","stringify","debugQuery","debugOptions","debugResponse","response","data","handleAndDebugErr","err","debugError","error","_unused","RequestDelete","go","authorize","axios","getAxios","delete","_extends","params","RequestGet","get","RequestPatch","patch","RequestPost","post","Resources","self","getSession","Resource","id","AccountDomainTypes","AccountSortingTypes","AccountStatus","AccountType","AccountUserRole","AssetByAssetTypeSortingTypes","AssetCreationFileTypes","AssetSortingTypes","AssetTypeSortingTypes","AssetTypeUsabilityState","AuthMessageId","AuthTokenScope","AuthTypes","CampaignUseCaseCategory","ConsentStatus","ConsentType","ContactAssetSortingTypes","ContactSortingTypes","DomainStatus","EntitySources","FieldType","FilePurpose","FileStatus","InternalProductName","InvoiceStatus","JobStatus","JobType","Label","LocationSortingTypes","OpenscreenEmails","Permission","PluginNameTypes","PluginStatus","PricePlanName","PricePlanPaymentPeriod","PricePlanReporting","PrintFormat","PrintMode","PrintOrientation","PrintTemplate","PrintUnit","ProjectSortingTypes","ProjectStatus","QrCodeCornerDotTypes","QrCodeCornerSquareTypes","QrCodeDotTypes","QrCodeDynamicRedirectType","QrCodeErrorCorrectionLevel","QrCodeGradientTypes","QrCodeIntentType","QrCodeLocatorKeyType","QrCodeSortingTypes","QrCodeStatus","QrCodeType","QueryConditions","ScanTimelineOptions","StickerShape","TagActions","TagStates","UserCredentialsStatus","UserGroups","UserMediaFileTypes","UserMediaSortingTypes","UserSettingsDomain","GetAccountAccessDataRequest","args","sdkPartName","CheckUrlSafetyByAccountIdRequest","CreateApiKeyByAccountIdRequest","super","CreateAppRequest","CreateAssetTypeByAccountIdRequest","CreateCustomDomainByAccountIdRequest","CreateImageUploadPresignedUrlRequest","CreateInvitationByAccountIdRequest","CreateInvitationsByAccountIdRequest","CreateLocationByAccountIdRequest","CreatePrintPageTemplateByAccountIdRequest","CreatePrintStickerTemplateByAccountIdRequest","CreateProjectByAccountIdRequest","CreateQrCodeLogoByAccountRequest","CreateQrCodeStylingTemplateByAccountRequest","CreateQueryableCustomAttributeRequest","CreateSamlConfigurationRequest","CreateTicketByAccountIdRequest","CreateUserMediaMultipartPresignedUrlByAccountIdRequest","CreateUserMediaPresignedUrlByAccountIdRequest","CreateWebSessionExportByAccountIdRequest","DeleteContactsByAccountIdRequest","DeleteUserByAccountIdRequest","EnablePluginByAccountIdRequest","GetAccountRequest","GetCustomDomainRequest","GetAccountPluginPasswordRequest","GetAdvancedAssetReportByAccountIdRequest","GetAdvancedContactReportByAccountIdRequest","GetAdvancedScanReportByAccountIdRequest","GetAllAppsByAccountIdRequest","GetApiKeysByAccountIdRequest","GetAssetExportByAccountIdRequest","GetAssetGraphsByAccountIdRequest","GetAssetTypesByAccountIdRequest","GetAssetsByAccountIdRequest","GetBasicAssetReportByAccountIdRequest","GetBasicContactReportByAccountIdRequest","GetBatchesByAccountIdRequest","GetConsentByAccountIdRequest","GetContactExportByAccountIdRequest","GetContactsByAccountIdRequest","GetDecryptedKlaviyoKeyRequest","GetDomainsByAccountIdRequest","GetInstalledAppsByAccountIdRequest","GetJobsByAccountIdRequest","GetLocationsByAccountIdRequest","GetMostScannedAssetsByAccountIdRequest","GetPluginsByAccountIdRequest","GetPricePlanByAccountIdRequest","GetPrintJobsByAccountIdRequest","GetPrintPageTemplatesByAccountIdRequest","GetPrintStickerTemplatesByAccountIdRequest","GetProjectsByAccountIdRequest","GetQrCodeLogosByAccountIdRequest","GetQrcodeScansExportByAccountIdRequest","GetQrCodeStylingTemplatesByAccountIdRequest","GetQrCodesByAccountIdRequest","GetQueryableCustomAttributeRequest","GetScanDayOfWeekByAccountIdRequest","GetScanExportByAccountIdRequest","GetScanTimeOfDayByAccountIdRequest","GetScanTimelineByAccountIdRequest","GetScansByAccountIdRequest","GetUserByAccountIdRequest","GetUserMediasByAccountIdRequest","GetUsersByAccountIdRequest","GetUsersRolesByAccountIdRequest","GetWebSessionsTimelineByAccountIdRequest","InstallAppToAccountRequest","RetrieveCampaignStatusByAccountIdRequest","CreateCampaignAccountByAccountIdRequest","AdvanceStripeClockByAccountIdRequest","TestDomainConnectionRequest","UpdateAccountRequest","UpdateKlaviyoAccountPluginRequest","UpdateEngagePricePlanRequest","UpdatePricePlanByAccountIdRequest","UpdateRehrigAccountPluginRequest","UpdateUserByAccountIdRequest","UpdateUsersRolesByAccountIdRequest","UploadQrCodeLogoByAccountRequest","GetApiKeyRequest","GetApiKeySecretRequest","ResetApiKeySecretRequest","UpdateApiKeyRequest","GetAppByAppIdRequest","GetAppsRequest","GetPublishedAppsRequest","LoadAppRequest","UpdateAppByAppIdRequest","GetAppAccountByAppAccountIdRequest","GetMainAccountByAppAccountIdRequest","DeleteAssetGraphRequest","GetAssetGraphRequest","UpdateAssetGraphRequest","ComposeAssetByAssetTypeRequest","CreateAssetByAssetTypeRequest","DeleteAssetTypeRequest","GetAssetTypeByAssetTypeIdRequest","GetAssetTypeCountAtLocationRequest","GetAssetsByAssetTypeRequest","GetAssetTypeCountsByLocationRequest","UpdateAssetTypeRequest","UpdateAssetTypeCountAtLocationRequest","CreateContactByAssetIdRequest","CreateNeighborsByAssetIdRequest","CreateQrCodeByAssetIdRequest","CreateQrCodesByAssetIdRequest","DeleteAssetRequest","DeleteNeighborsByAssetIdRequest","GetAssetRequest","GetAssetHistoryRequest","GetContactsByAssetIdRequest","GetExternalNeighborScanCountByAssetIdRequest","GetNeighborScanCountByAssetIdRequest","GetNeighborsByAssetIdRequest","GetQrCodesByAssetIdRequest","GetScanExportByAssetIdRequest","GetScanLocationDataByAssetIdRequest","GetScansByAssetIdRequest","GetUserMediasByAssetIdRequest","LinkContactToAssetRequest","UnlinkContactToAssetRequest","UpdateAssetRequest","GetAssetsByBatchIdRequest","CancelDowngradeRequestRequest","CancelSubscriptionRequest","ChangeSubscriptionPreviewRequest","CreateSetupIntentRequest","DowngradePlanRequest","GetBillingDetailsRequest","GetCurrentPeriodRequest","GetInvoicesRequest","ChangeSubscriptionRequest","GetAllAccountsRequest","CreateConsentByContactIdRequest","DeleteConsentByContactIdRequest","DeleteContactRequest","GetAssetsByContactIdRequest","GetConsentByContactIdRequest","GetContactRequest","GetContactExportByContactIdRequest","GetScanExportByContactIdRequest","GetScanLocationDataByContactIdRequest","GetScansByContactIdRequest","LinkContactToScanRequest","UpdateContactRequest","CheckCustomLocatorKeyRangeRequest","DeleteCustomDomainRequest","RetryCustomDomainRequest","GetFileRequest","ValidateFileRequest","CreateUserByInvitationIdRequest","DeleteInvitationRequest","GetInvitationRequest","DeleteJobRequest","DeletePrintJobRequest","GetJobRequest","InvokePrintJobByJobIdRequest","UpdateAssetsLocationsRequest","DeleteLocationRequest","GetAssetsByLocationIdRequest","UpdateLocationRequest","SendSupportEmailRequest","GetPricePlansRequest","AssignDomainToProjectRequest","CreateAssetBatchValidationJobByProjectIdRequest","CreateAssetByProjectIdRequest","CreateAssetCreationJobByProjectIdRequest","CreateAssetCreationPresignedUrlRequest","CreateAssetGraphByProjectIdRequest","CreateAssetsByProjectIdRequest","CreateContactByProjectIdRequest","CreateContactsByProjectIdRequest","CreatePrintJobByProjectIdRequest","CreateQrCodeByProjectIdRequest","CreateSelfQueuePrintJobByProjectIdRequest","CreateSmsTemplateByProjectIdRequest","CreateTemplatedPrintJobByProjectIdRequest","CreateTemplatedPrintPreviewByProjectIdRequest","CreateWebSessionExportByProjectIdRequest","DeleteContactsByProjectIdRequest","DeleteProjectRequest","DeleteSmsTemplateByProjectIdRequest","GetAdvancedAssetReportByProjectIdRequest","GetAdvancedContactReportByProjectIdRequest","GetAdvancedScanReportByProjectIdRequest","GetAllExportsByProjectIdRequest","GetAssetExportByProjectIdRequest","GetAssetGraphsByProjectIdRequest","GetAssetsByProjectIdRequest","GetBasicAssetReportByProjectIdRequest","GetBasicContactReportByProjectIdRequest","GetBatchesByProjectIdRequest","GetConsentByProjectIdRequest","GetContactExportByProjectIdRequest","GetContactsByProjectIdRequest","GetMostScannedAssetsByProjectIdRequest","GetProjectByProjectIdRequest","GetQrCodeScansExportByProjectIdRequest","GetQrCodesByProjectIdRequest","GetScanDayOfWeekByProjectIdRequest","GetScanExportByProjectIdRequest","GetScanTimeOfDayByProjectIdRequest","GetScanTimelineByProjectIdRequest","GetScansByProjectIdRequest","GetSmsTemplateByProjectIdRequest","GetSmsTemplatesByProjectIdRequest","GetUserMediasByProjectIdRequest","GetWebSessionsTimelineByProjectIdRequest","UpdateProjectByProjectIdRequest","UpdateSmsTemplateRequest","GetQrCodeLinkRequest","GetQrCodeLogoByQrCodeLogoIdRequest","UpdateQrCodeLogoByQrCodeLogoIdRequest","CreateLinkByQrCodeRequest","DeleteLinkByQrCodeRequest","DeleteQrCodeRequest","GetLinksByQrCodeRequest","GetQrCodeRequest","UpdateQrCodeRequest","CreateContactByScanIdRequest","GetScanRequest","SaveGeolocationByScanIdRequest","SendEmailByScanIdRequest","SendSmsByScanIdRequest","UpdateScanCustomAttributeRequest","DeletePrintPageTemplateRequest","DeletePrintStickerTemplateRequest","DeleteQrCodeStylingTemplateByStylingTemplateIdRequest","GetPrintPageTemplateRequest","GetPrintStickerTemplateRequest","GetQrCodeStylingTemplateByStylingTemplateIdRequest","UpdatePrintPageTemplateRequest","UpdatePrintStickerTemplateRequest","UpdateQrCodeStylingTemplateByStylingTemplateIdRequest","CompleteUserMediaMultipartUploadRequest","GetMediaRequest","LinkMediaToAssetRequest","LinkMediaToProjectRequest","LinkMediaToScanRequest","LinkMediasRequest","UnlinkMediaToAssetRequest","UnlinkMediaToProjectRequest","UnlinkMediaToScanRequest","UnlinkMediasRequest","UpdateMediaRequest","GetUserRolesRequest","CreateAccountByUserIdRequest","GetAccountsByUserIdRequest","GetErrorsByUserIdRequest","GetInvitationsByUserIdRequest","GetUserRequest","GetUserSettingsByUserIdRequest","SetUserSettingsByUserIdRequest","UpdateUserRequest","CreateSmsResponseRequest","ExportJobResolutionRequest","SmsStatusUpdateRequest","StripeEventRequest","CreateSessionActionsRequest","GetWebSessionRequest","UpdateWebSessionRequest","ChangePasswordRequest","CheckSessionRequest","ConfirmRequest","ConfirmInvitedRequest","CreateUserRequest","GetSessionRequest","DeleteSessionRequest","RefreshSessionRequest","ResendConfirmationRequest","ResetPasswordRequest","SamlAcsRequest","SignOnRequest","SdkAccountUserConfirmResources","undefined","SdkAccountUserRolesResources","update","requestBody","SdkAccountUserResource","confirm","roles","SdkAccountUrlSafetiesResources","create","SdkAccountApikeysResources","queryStringParameters","SdkAccountAppsResources","SdkAccountAssettypesResources","SdkAccountCustomDomainsResources","SdkAccountImageUploadResources","SdkAccountInvitationsResources","SdkAccountInvitationsBatchResources","SdkAccountLocationsResources","SdkAccountPrintPageTemplatesResources","SdkAccountPrintStickerTemplatesResources","SdkAccountProjectsResources","SdkAccountQrcodelogosResources","SdkAccountStylingtemplatesResources","SdkAccountCustomattributesResources","SdkAccountSSOConfigurationResources","SdkAccountZendeskTicketResources","SdkAccountUsermediasPresignedurlmultipartResources","SdkAccountUsermediasPresignedurlResources","SdkAccountWebsessionsExportResources","SdkAccountContactsBatchResources","SdkAccountPluginPasswordResources","SdkAccountPluginKlaviyoKeyResources","SdkAccountPluginKlaviyoResources","SdkAccountPluginRehrigResources","SdkAccountPluginResource","password","klaviyoKey","klaviyo","rehrig","SdkAccountCustomDomainTestResources","SdkAccountCustomDomainResource","test","SdkAccountAdvancedAssetsReportResources","SdkAccountAdvancedContactsReportResources","SdkAccountAdvancedScansReportResources","SdkAccountOwnerAppsResources","SdkAccountAssetsExportResources","SdkAccountAssetgraphsResources","SdkAccountAssetsResources","SdkAccountBasicAssetsReportResources","SdkAccountBasicContactsReportResources","SdkAccountBatchResources","SdkAccountConsentResources","SdkAccountContactsExportResources","SdkAccountContactsResources","SdkAccountJobsResources","SdkAccountAssetsMostscannedResources","SdkAccountPluginsResources","SdkAccountPricePlanResources","SdkAccountPrintJobsResources","SdkAccountExportQrCodesScansResources","SdkAccountQrCodesResources","SdkAccountScansDayofweekResources","SdkAccountScansExportResources","SdkAccountScansTimeofdayResources","SdkAccountScansTimelineResources","SdkAccountScansResources","SdkAccountUsermediasResources","SdkAccountUsersResources","SdkAccountWebsessionsTimelineResources","SdkAccountAppInstallResources","SdkAccountAppResource","install","SdkAccountCampaignInformationResources","SdkAccountClockResources","SdkAccountEngagePricePlanResources","SdkAccountQrcodelogosUploadResources","SdkAccountResource","user","userId","urlSafeties","apikeys","apps","assettypes","customDomains","imageUpload","invitations","invitationsBatch","locations","printPageTemplates","printStickerTemplates","projects","qrcodelogos","stylingtemplates","customattributes","SSOConfiguration","zendeskTicket","usermediasPresignedurlmultipart","usermediasPresignedurl","websessionsExport","contactsBatch","plugin","pluginId","customDomain","advancedAssetsReport","advancedContactsReport","advancedScansReport","ownerApps","assetsExport","assetgraphs","assets","basicAssetsReport","basicContactsReport","batch","consent","contactsExport","contacts","jobs","assetsMostscanned","plugins","pricePlan","printJobs","exportQrCodesScans","qrCodes","scansDayofweek","scansExport","scansTimeofday","scansTimeline","scans","usermedias","users","websessionsTimeline","app","appId","campaignInformation","clock","engagePricePlan","qrcodelogosUpload","SdkApikeySecretResources","SdkApikeyResource","secret","SdkAppAccountLoadResources","SdkAppAccountResource","load","SdkAppResource","account","accountId","SdkAppsResources","SdkAppsPublishedResources","SdkAppsAccountMainResources","SdkAppsAccountResource","main","SdkAssetgraphResource","SdkAssettypeAssetResource","compose","SdkAssettypeAssetsResources","SdkAssettypeLocationResource","SdkAssettypeLocationsResources","SdkAssettypeResource","asset","assetId","location","locationId","SdkAssetContactsResources","SdkAssetNeighborsResources","SdkAssetQrCodesResources","SdkAssetNeighborsDeleteResources","SdkAssetHistoryResources","SdkAssetUrlResource","SdkAssetNeighborResource","SdkAssetScansExportResources","SdkAssetScansLocationResources","SdkAssetScansResources","SdkAssetUsermediasResources","SdkAssetContactResource","link","unlink","SdkAssetResource","neighbors","neighborsDelete","history","neighbor","neighborId","scansLocation","contact","contactId","SdkBatchAssetsResources","SdkBatchResource","SdkBillingCancelDowngradeResource","SdkBillingCancelSubscriptionResource","SdkUpgradePlanBillingPreviewResource","SdkBillingSetupIntentResource","SdkBillingDowngradePlanResource","SdkBillingDetailResource","SdkBillingCurrentPeriodResource","SdkBillingInvoiceResource","SdkBillingUpgradePlanResource","SdkCareAccountsResources","SdkContactConsentResources","SdkContactAssetsResources","SdkContactExportResources","SdkContactScansExportResources","SdkContactScansLocationResources","SdkContactScansResources","SdkContactScanResource","SdkContactResource","export","scan","scanId","SdkCustomdomainLocatorCollisionsResources","SdkCustomdomainRetryResources","SdkCustomdomainResource","locatorCollisions","retry","SdkFileValidateResources","SdkFileResource","validate","SdkInvitationUsersResources","SdkInvitationResource","SdkJobResource","SdkPrintJobResource","invoke","SdkLocationAssetsResources","SdkLocationResource","SdkSupportResources","SdkPricePlansResources","SdkProjectCustomDomainResource","SdkProjectJobsAssetbatchvalidationResources","SdkProjectAssetsResources","SdkProjectJobsAssetbatchResources","SdkProjectPresignedurlJobsAssetbatchResources","SdkProjectAssetgraphsResources","SdkProjectAssetsBatchResources","SdkProjectContactsResources","SdkProjectContactsBatchResources","SdkProjectPrintResources","SdkProjectQrCodesResources","SdkProjectSelfqueueprintResources","SdkProjectSmsTemplatesResources","SdkProjectPrintJobsResources","SdkProjectTemplatedPrintPreviewResources","SdkProjectWebsessionsExportResources","SdkProjectSmsTemplateResource","SdkProjectAdvancedAssetsReportResources","SdkProjectAdvancedContactsReportResources","SdkProjectAdvancedScansReportResources","SdkProjectExportResources","SdkProjectAssetsExportResources","SdkProjectBasicAssetsReportResources","SdkProjectBasicContactsReportResources","SdkProjectBatchResources","SdkProjectConsentResources","SdkProjectContactsExportResources","SdkProjectAssetsMostscannedResources","SdkProjectExportQrCodesScansResources","SdkProjectScansDayofweekResources","SdkProjectScansExportResources","SdkProjectScansTimeofdayResources","SdkProjectScansTimelineResources","SdkProjectScansResources","SdkProjectUsermediasResources","SdkProjectWebsessionsTimelineResources","SdkProjectResource","jobsAssetbatchvalidation","jobsAssetbatch","presignedurlJobsAssetbatch","assetsBatch","print","selfqueueprint","smsTemplates","templatedPrintPreview","smsTemplate","smsTemplateName","SdkQrcodelinkResource","SdkQrcodelogoResource","SdkQrCodeLinksResources","SdkQrCodeLinkResource","SdkQrCodeResource","links","SdkScanContactsResources","SdkScanEmailResources","send","SdkScanSmsResources","SdkScanCustomAttributeResources","SdkScanResource","email","sms","customAttribute","SdkPrintPageTemplateResource","SdkPrintStickerTemplateResource","SdkStylingtemplateResource","SdkUsermediaMultipartResources","SdkUsermediaAssetResource","SdkUsermediaProjectResource","SdkUsermediaScanResource","SdkUsermediaResource","multipart","project","projectId","SdkUserrolesResources","SdkUserAccountsResources","SdkUserErrorsResources","SdkUserInvitationsResources","SdkUserPathSettingsResources","SdkUserPathResource","settings","SdkUserResource","accounts","errors","path","SdkWebhookSmsResources","SdkWebhookExportJobResolutionResources","SdkWebhookSmsStatusResources","SdkWebhookStripeResources","SdkWebsessionSessionactionsResources","SdkWebsessionResource","sessionactions","SdkPasswordAuthUserResources","SdkAuthSessionResources","SdkAuthConfirmResources","SdkInvitedAuthConfirmResources","SdkAuthUserResources","SdkRefreshAuthSessionResources","SdkConfirmationAuthUserResources","resend","SdkResetAuthUserResources","reset","SdkCompanyAuthSsoSamlAcsResources","SdkCompanyAuthSsoResource","samlAcs","SdkResources","apikey","apiKeyId","appsPublished","appsAccount","appAccountId","assetgraph","assetGraphId","assettype","assetTypeId","batchId","billingCancelDowngrade","billingCancelSubscription","upgradePlanBillingPreview","billingSetupIntent","billingDowngradePlan","billingDetail","billingCurrentPeriod","billingInvoice","billingUpgradePlan","careAccounts","customdomain","file","fileId","invitation","invitationId","job","jobId","printJob","printJobId","support","pricePlans","qrcodelink","qrCodeLink","qrcodelogo","qrCodeLogoId","qrCode","qrCodeId","printPageTemplate","printPageTemplateId","printStickerTemplate","printStickerTemplateId","stylingtemplate","stylingTemplateId","usermedia","mediaId","userroles","webhookSms","webhookExportJobResolution","webhookSmsStatus","webhookStripe","websession","sessionId","passwordAuthUser","authSession","authConfirm","invitedAuthConfirm","authUser","refreshAuthSession","confirmationAuthUser","resetAuthUser","companyAuthSso","companyName","ProdConfigurationPath","NullSession","debugConfig","debugAuth","exp","getConfig","getUser","getSignedInUser","signUpUser","changePassword","signOut","Openscreen","_config","cloudConfigName","cloudConfig","_user","OS_DEBUG","process","env","log","toLowerCase","split","includes","warn","config","key","environment","Promise","resolve","info","res","status","expires","signUpDetails","checkSession","Date","getTime","c","repeat","length","async","pathToConfig","thisAxios","baseURL","timeout","responseType","maxContentLength","maxBodyLength","maxRedirects","decompress","catch","message","oldPassword","newPassword"],"mappings":"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"}
1
+ {"version":3,"file":"index.modern.mjs","sources":["../src/request.ts","../src/request-delete.ts","../src/request-get.ts","../src/request-patch.ts","../src/request-post.ts","../src/resource.ts","../src/sdk.ts","../src/openscreen.ts"],"sourcesContent":["/* eslint-disable no-console, import/no-cycle */\nimport {IOpenscreenSession} from './openscreen-session'\n\nexport interface RequestRouteSegment {\n parm?: string\n routePart: string\n sdkPartName: string\n}\n\nexport class Request {\n session: IOpenscreenSession\n routeSegments?: RequestRouteSegment[]\n\n constructor(session: IOpenscreenSession) {\n this.session = session\n }\n\n async makeUri(pathParameters: any = {}) {\n const cloudConfig = await this.session.getCloudConfig()\n const urlParts: string[] = [cloudConfig.endpoint.replace(/\\/+$/, '')]\n this.routeSegments!.forEach((segment) => {\n urlParts.push(segment.routePart)\n if (segment.parm) {\n const value = pathParameters[segment.parm!]\n if (!value) {\n throw Error(`Openscreen: missing path parameter value for '${segment.parm!}'`)\n }\n urlParts.push(value)\n }\n })\n return urlParts.join('/')\n }\n\n debugRequest(httpMethod: string, url: string, queryParameters?: any, body?: any, options?: any) {\n if (this.session.debugRequest) {\n console.debug(`Openscreen REQUEST: ${httpMethod.toUpperCase()} ${url}`)\n if (body) console.debug(`Openscreen REQUEST: ${JSON.stringify(body, null, 2)}`)\n if (queryParameters && this.session.debugQuery) {\n console.debug(`Openscreen QUERY: ${JSON.stringify(queryParameters, null, 2)}`)\n }\n if (options && this.session.debugOptions) {\n console.debug(`Openscreen OPTIONS: ${JSON.stringify(options, null, 2)}`)\n }\n }\n }\n\n debugResponse(response: any) {\n if (this.session.debugResponse) {\n console.debug(`Openscreen RESPONSE: ${JSON.stringify(response.data || {}, null, 2)}`)\n }\n }\n\n handleAndDebugErr(err: any): any {\n if (err.response && err.response.data) {\n if (this.session.debugError) {\n console.error(`Openscreen ERROR: ${JSON.stringify(err.response.data, null, 2)}`)\n } else if (this.session.debugResponse) {\n console.error(`Openscreen RESPONSE: ${JSON.stringify(err.response.data, null, 2)}`)\n }\n return err.response.data\n }\n if (this.session.debugError) {\n try {\n console.error(err)\n } catch {\n console.error(`Openscreen: (unable to print error)`)\n }\n }\n return err\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestDelete<PathParameters, QueryParameters, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters: QueryParameters,\n options?: any,\n ): Promise<ResponseBody> {\n try {\n const willAuthorize: boolean = options ? options.willAuthorize : true\n const url = await this.makeUri(pathParameters)\n if (willAuthorize) await this.session.authorize()\n this.debugRequest('delete', url, queryParameters, null, options)\n const axios = await this.session.getAxios()\n const response = await axios.delete(url, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestGet<PathParameters, QueryParameters, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters?: QueryParameters,\n options?: any,\n ): Promise<ResponseBody> {\n try {\n const willAuthorize: boolean = options ? options.willAuthorize : true\n const url = await this.makeUri(pathParameters)\n if (willAuthorize) await this.session.authorize()\n this.debugRequest('get', url, queryParameters, null, options)\n const axios = await this.session.getAxios()\n const response = await axios.get(url, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestPatch<PathParameters, QueryParameters, RequestBody, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters?: QueryParameters,\n body?: RequestBody,\n options?: any,\n ): Promise<ResponseBody> {\n try {\n const willAuthorize: boolean = options ? options.willAuthorize : true\n const url = await this.makeUri(pathParameters)\n if (willAuthorize) await this.session.authorize()\n this.debugRequest('patch', url, queryParameters, body, options)\n const axios = await this.session.getAxios()\n const response = await axios.patch(url, body, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data! as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestPost<PathParameters, QueryParameters, RequestBody, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters?: QueryParameters,\n body?: RequestBody,\n options?: any,\n ): Promise<ResponseBody> {\n try {\n const willAuthorize: boolean = options ? options.willAuthorize : true\n const url = await this.makeUri(pathParameters)\n if (willAuthorize) await this.session.authorize()\n this.debugRequest('post', url, queryParameters, body, options)\n const axios = await this.session.getAxios()\n const response = await axios.post(url, body, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data! as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","import {IOpenscreenSession} from './openscreen-session'\n\nexport class Resources {\n protected session: IOpenscreenSession\n protected pathParameters: any\n\n constructor(session: IOpenscreenSession, pathParameters: any) {\n this.session = session\n this.pathParameters = pathParameters\n }\n\n self() {\n return this\n }\n\n getSession(): IOpenscreenSession {\n return this.session\n }\n}\n\nexport class Resource {\n protected session: IOpenscreenSession\n protected pathParameters: any\n protected id?: string\n\n constructor(session: IOpenscreenSession, pathParameters: any) {\n this.session = session\n this.pathParameters = pathParameters\n }\n\n getSession(): IOpenscreenSession {\n return this.session\n }\n}\n","import {RequestRouteSegment} from './request.js'\nimport {RequestDelete} from './request-delete.js'\nimport {RequestGet} from './request-get.js'\nimport {RequestPatch} from './request-patch.js'\nimport {RequestPost} from './request-post.js'\nimport {Resource, Resources} from './resource.js'\n\nexport interface NestedKeyValueObject {\n [key: string] : string | number | boolean | NestedKeyValueObject | string[]\n}\n// ENUMERATIONS\n\nexport enum AccountDomainTypes {\n ENGAGE_MICROSITE = 'ENGAGE_MICROSITE',\n QRCODE = 'QRCODE',\n TRACK_WORKFLOW = 'TRACK_WORKFLOW',\n}\n\nexport enum AccountSortingTypes {\n CREATED_DATE = 'CREATED_DATE',\n STATIC_QR_CODE_COUNT = 'STATIC_QR_CODE_COUNT',\n DYNAMIC_QR_CODE_COUNT = 'DYNAMIC_QR_CODE_COUNT',\n SCAN_COUNT = 'SCAN_COUNT',\n CONTACT_COUNT = 'CONTACT_COUNT',\n PRICE_PLAN = 'PRICE_PLAN',\n LAST_ACTIVITY = 'LAST_ACTIVITY',\n CLIENT_EXEC = 'CLIENT_EXEC',\n ASSET_COUNT = 'ASSET_COUNT',\n SMS_COUNT = 'SMS_COUNT',\n ACCOUNT_STATUS = 'ACCOUNT_STATUS',\n}\n\nexport enum AccountStatus {\n ACTIVE = 'ACTIVE',\n SUSPENDED = 'SUSPENDED',\n CANCELLED = 'CANCELLED',\n}\n\nexport enum AccountType {\n INTERNAL = 'INTERNAL',\n EXTERNAL = 'EXTERNAL',\n}\n\nexport enum AccountUserRole {\n OWNER = 'OWNER',\n ADMINISTRATOR = 'ADMINISTRATOR',\n BILLING_CONTACT = 'BILLING_CONTACT',\n MEMBER = 'MEMBER',\n API_KEY = 'API_KEY',\n INVITATION_DECLINED = 'INVITATION_DECLINED',\n READ_ONLY = 'READ_ONLY',\n}\n\nexport enum AssetByAssetTypeSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n QR_CODE_COUNT = 'QR_CODE_COUNT',\n STATE = 'STATE',\n}\n\nexport enum AssetCreationFileTypes {\n json = 'json',\n csv = 'csv',\n}\n\nexport enum AssetSortingTypes {\n MODIFIED = 'MODIFIED',\n STATE = 'STATE',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n QR_CODE_COUNT = 'QR_CODE_COUNT',\n ASSET_TYPE_NAME = 'ASSET_TYPE_NAME',\n}\n\nexport enum AssetTypeSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n}\n\nexport enum AssetTypeUsabilityState {\n PUBLISHED = 'PUBLISHED',\n DRAFT = 'DRAFT',\n ARCHIVED = 'ARCHIVED',\n}\n\nexport enum AuthMessageId {\n INVALID_API_KEY = 'INVALID_API_KEY',\n INVALID_EMAIL = 'INVALID_EMAIL',\n INVALID_LEGACY_MIGRATION = 'INVALID_LEGACY_MIGRATION',\n INVALID_PASSWORD = 'INVALID_PASSWORD',\n INVALID_SCOPE = 'INVALID_SCOPE',\n INVALID_SECRET = 'INVALID_SECRET',\n INVALID_TOKEN = 'INVALID_TOKEN',\n MIGRATE_FROM_COGNITO = 'MIGRATE_FROM_COGNITO',\n NO_ACCESS_TOKEN = 'NO_ACCESS_TOKEN',\n NO_REFRESH_TOKEN = 'NO_REFRESH_TOKEN',\n RESET_PASSWORD = 'RESET_PASSWORD',\n RESET_SECRET = 'RESET_SECRET',\n SUSPENDED_OR_INACTIVE = 'SUSPENDED_OR_INACTIVE',\n TOKEN_EXPIRED = 'TOKEN_EXPIRED',\n TRY_AGAIN = 'TRY_AGAIN',\n UNABLE_TO_CONFIRM_EMAIL = 'UNABLE_TO_CONFIRM_EMAIL',\n UNCONFIRMED_EMAIL = 'UNCONFIRMED_EMAIL',\n EMAIL_ALREADY_TAKEN = 'EMAIL_ALREADY_TAKEN',\n SSO_USER = 'SSO_USER',\n}\n\nexport enum AuthTokenScope {\n API = 'API',\n SSO = 'SSO',\n CONFIRM_EMAIL = 'CONFIRM_EMAIL',\n NEW_PASSWORD = 'NEW_PASSWORD',\n NO_SESSION = 'NO_SESSION',\n NO_PASSWORD = 'NO_PASSWORD',\n CONFIRMED_NO_PASSWORD = 'CONFIRMED_NO_PASSWORD',\n}\n\nexport enum AuthTypes {\n MICROSOFT = 'MICROSOFT',\n}\n\nexport enum CampaignUseCaseCategory {\n TWO_FACTOR_AUTHENTICATION = 'TWO_FACTOR_AUTHENTICATION',\n MARKETING = 'MARKETING',\n CUSTOMER_CARE = 'CUSTOMER_CARE',\n CHARITY_NONPROFIT = 'CHARITY_NONPROFIT',\n DELIVERY_NOTIFICATIONS = 'DELIVERY_NOTIFICATIONS',\n FRAUD_ALERT_MESSAGING = 'FRAUD_ALERT_MESSAGING',\n EVENTS = 'EVENTS',\n HIGHER_EDUCATION = 'HIGHER_EDUCATION',\n K12 = 'K12',\n POLLING_AND_VOTING_NON_POLITICAL = 'POLLING_AND_VOTING_NON_POLITICAL',\n POLITICAL_ELECTION_CAMPAIGNS = 'POLITICAL_ELECTION_CAMPAIGNS',\n PUBLIC_SERVICE_ANNOUNCEMENT = 'PUBLIC_SERVICE_ANNOUNCEMENT',\n SECURITY_ALERT = 'SECURITY_ALERT',\n ACCOUNT_NOTIFICATIONS = 'ACCOUNT_NOTIFICATIONS',\n}\n\nexport enum ConsentStatus {\n ACCEPTED = 'ACCEPTED',\n DECLINED = 'DECLINED',\n true = 'true',\n false = 'false',\n}\n\nexport enum ConsentType {\n SMS = 'SMS',\n EMAIL = 'EMAIL',\n DATA = 'DATA',\n CUSTOM = 'CUSTOM',\n}\n\nexport enum ContactAssetSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n PHONE = 'PHONE',\n EMAIL = 'EMAIL',\n LAST_SCAN_TIME = 'LAST_SCAN_TIME',\n LAST_SCAN_LOCATION = 'LAST_SCAN_LOCATION',\n SCAN_COUNT = 'SCAN_COUNT',\n}\n\nexport enum ContactSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n ASSET_NAME = 'ASSET_NAME',\n PHONE = 'PHONE',\n EMAIL = 'EMAIL',\n LAST_SCAN_TIME = 'LAST_SCAN_TIME',\n LAST_SCAN_LOCATION = 'LAST_SCAN_LOCATION',\n SCAN_COUNT = 'SCAN_COUNT',\n}\n\nexport enum DomainStatus {\n INITIATED = 'INITIATED',\n VERIFIED = 'VERIFIED',\n CERTIFICATE_REQUESTED = 'CERTIFICATE_REQUESTED',\n CERTIFICATE_VALIDATION_ADDED = 'CERTIFICATE_VALIDATION_ADDED',\n CERTIFICATE_VALIDATED = 'CERTIFICATE_VALIDATED',\n CDN_DISTRIBUTION_ADDED = 'CDN_DISTRIBUTION_ADDED',\n COMPLETED = 'COMPLETED',\n FAILED = 'FAILED',\n}\n\nexport enum EntitySources {\n CARE_API = 'CARE_API',\n}\n\nexport enum FieldType {\n STRING = 'STRING',\n NUMBER = 'NUMBER',\n}\n\nexport enum InternalProductName {\n ENGAGE = 'ENGAGE',\n TRACK = 'TRACK',\n INVENTORY = 'INVENTORY',\n CREATE = 'CREATE',\n}\n\nexport enum InvoiceStatus {\n COMING_UP = 'COMING_UP',\n PAID = 'PAID',\n PAST_DUE = 'PAST_DUE',\n VOID = 'VOID',\n}\n\nexport enum JobStatus {\n IN_PROGRESS = 'IN_PROGRESS',\n COMPLETED = 'COMPLETED',\n TIMEOUT = 'TIMEOUT',\n FAILED = 'FAILED',\n CANCELLED = 'CANCELLED',\n DOWNLOADED = 'DOWNLOADED',\n}\n\nexport enum JobType {\n BATCH_CREATE_BLANK_ITEMS = 'BATCH_CREATE_BLANK_ITEMS',\n BATCH_CREATE_ASSETS = 'BATCH_CREATE_ASSETS',\n VALIDATE_CSV = 'VALIDATE_CSV',\n VALIDATE_AND_GENERATE_CSV = 'VALIDATE_AND_GENERATE_CSV',\n SELF_QUEUE_BATCH_PRINT = 'SELF_QUEUE_BATCH_PRINT',\n SCAN_EXPORT = 'SCAN_EXPORT',\n ASSET_EXPORT = 'ASSET_EXPORT',\n CONTACT_EXPORT = 'CONTACT_EXPORT',\n TEMPLATED_PRINT = 'TEMPLATED_PRINT',\n CLONE_MICROSITE = 'CLONE_MICROSITE',\n QRCODE_SCANS_EXPORT = 'QRCODE_SCANS_EXPORT',\n PROJECT_EXPORT = 'PROJECT_EXPORT',\n ACCOUNT_EXPORT = 'ACCOUNT_EXPORT',\n WEB_SESSION_EXPORT = 'WEB_SESSION_EXPORT',\n USER_DB_ENTITIES_GENENERATION = 'USER_DB_ENTITIES_GENENERATION',\n USER_DB_ENTITIES_EXPORT = 'USER_DB_ENTITIES_EXPORT',\n UPDATE_MICROSITE_QR_CODE_CUSTOM_DOMAIN = 'UPDATE_MICROSITE_QR_CODE_CUSTOM_DOMAIN',\n UPDATE_MICROSITE_CDN_CUSTOM_DOMAIN = 'UPDATE_MICROSITE_CDN_CUSTOM_DOMAIN',\n}\n\nexport enum Label {\n NONE = 'NONE',\n ASSET_NAME = 'ASSET_NAME',\n CUSTOM = 'CUSTOM',\n COMPANY_NAME = 'COMPANY_NAME',\n LOCATOR_KEY = 'LOCATOR_KEY',\n}\n\nexport enum LocationSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n STATE = 'STATE',\n}\n\nexport enum OpenscreenEmails {\n SALES_EMAIL = 'SALES_EMAIL',\n SUPPORT_EMAIL = 'SUPPORT_EMAIL',\n}\n\nexport enum Permission {\n PLUGIN_CONFIGURATION = 'PLUGIN_CONFIGURATION',\n INDIVIDUAL_ACCOUNT_SETTINGS = 'INDIVIDUAL_ACCOUNT_SETTINGS',\n WORKFLOW_BUILDER = 'WORKFLOW_BUILDER',\n QR_CODE_AND_PRINT_STUDIO = 'QR_CODE_AND_PRINT_STUDIO',\n REPORTING_AND_ANALYTICS = 'REPORTING_AND_ANALYTICS',\n USER_MANAGEMENT = 'USER_MANAGEMENT',\n BILLING = 'BILLING',\n}\n\nexport enum PluginNameTypes {\n ADMIN_PLUGIN = 'ADMIN_PLUGIN',\n REHRIG_VISION = 'REHRIG_VISION',\n HOTWIRE = 'HOTWIRE',\n GOOGLE_SHEET = 'GOOGLE_SHEET',\n CONDITIONAL_REDIRECT = 'CONDITIONAL_REDIRECT',\n GOOGLE_PLACES = 'GOOGLE_PLACES',\n REHRIG_BARRIE_ADDRESS_DYNAMO_DB = 'REHRIG_BARRIE_ADDRESS_DYNAMO_DB',\n GUND = 'GUND',\n KLAVIYO = 'KLAVIYO',\n REHRIG_VISION_TRACK = 'REHRIG_VISION_TRACK',\n}\n\nexport enum PluginStatus {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n SUSPENDED = 'SUSPENDED',\n}\n\nexport enum PricePlanName {\n FREE = 'free',\n PAYASYOUGO = 'payAsYouGo',\n ADVANCED = 'advanced',\n PRO = 'pro',\n ENTERPRISE_CUSTOM = 'enterpriseCustom',\n UNLIMITED = 'unlimited',\n ENGAGE_STARTER_MONTHLY = 'engageStarterMonthly',\n ENGAGE_STARTER_YEARLY = 'engageStarterYearly',\n ENGAGE_PRO_MONTHLY = 'engageProMonthly',\n ENGAGE_PRO_YEARLY = 'engageProYearly',\n ENGAGE_PREMIUM_MONTHLY = 'engagePremiumMonthly',\n ENGAGE_PREMIUM_YEARLY = 'engagePremiumYearly',\n ENGAGE_ENTERPRISE_CUSTOM = 'engageEnterpriseCustom',\n ENGAGE_ADDON = 'engageAddon',\n}\n\nexport enum PricePlanPaymentPeriod {\n MONTHLY = 'monthly',\n ANNUAL = 'annual',\n}\n\nexport enum PricePlanReporting {\n BASIC = 'basic',\n ADVANCED = 'advanced',\n basic = 'basic',\n advance = 'advanced',\n}\n\nexport enum PrintFormat {\n A3 = 'A3',\n A4 = 'A4',\n A5 = 'A5',\n LETTER = 'LETTER',\n LEGAL = 'LEGAL',\n}\n\nexport enum PrintMode {\n SINGLE = 'SINGLE',\n MULTIPLE = 'MULTIPLE',\n}\n\nexport enum PrintOrientation {\n PORTRAIT = 'PORTRAIT',\n LANDSCAPE = 'LANDSCAPE',\n}\n\nexport enum PrintTemplate {\n AVERY_5160 = 'AVERY_5160',\n AVERY_5163 = 'AVERY_5163',\n AVERY_94103 = 'AVERY_94103',\n AVERY_22806 = 'AVERY_22806',\n AVERY_22805 = 'AVERY_22805',\n OL914 = 'OL914',\n OL3012LP = 'OL3012LP',\n OL3012LPCustom = 'OL3012LPCustom',\n CLOUD_TAGS_15 = 'CLOUD_TAGS_15',\n CLOUD_TAGS_20 = 'CLOUD_TAGS_20',\n LUGGAGE_TAGS_SINGLE = 'LUGGAGE_TAGS_SINGLE',\n LUGGAGE_TAGS_5_X_5 = 'LUGGAGE_TAGS_5_X_5',\n CT_8_X_6_GRIPPER = 'CT_8_X_6_GRIPPER',\n MINI_CLOUD_TAGS_4_X_3 = 'MINI_CLOUD_TAGS_4_X_3',\n}\n\nexport enum PrintUnit {\n IN = 'IN',\n CM = 'CM',\n MM = 'MM',\n PT = 'PT',\n}\n\nexport enum ProjectSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n QR_CODE_COUNT = 'QR_CODE_COUNT',\n CONTACT_COUNT = 'CONTACT_COUNT',\n ASSET_COUNT = 'ASSET_COUNT',\n}\n\nexport enum ProjectStatus {\n ACTIVE = 'ACTIVE',\n SUSPENDED = 'SUSPENDED',\n}\n\nexport enum QrCodeCornerDotTypes {\n dot = 'dot',\n square = 'square',\n}\n\nexport enum QrCodeCornerSquareTypes {\n dot = 'dot',\n square = 'square',\n extra_rounded = 'extra-rounded',\n}\n\nexport enum QrCodeDotTypes {\n classy = 'classy',\n classy_rounded = 'classy-rounded',\n dots = 'dots',\n extra_rounded = 'extra-rounded',\n rounded = 'rounded',\n square = 'square',\n}\n\nexport enum QrCodeDynamicRedirectType {\n NO_SCAN_ID = 'NO_SCAN_ID',\n SCAN_ID_IN_PATH_PARAMETER = 'SCAN_ID_IN_PATH_PARAMETER',\n SCAN_ID_IN_QUERY_STRING_PARAMETER = 'SCAN_ID_IN_QUERY_STRING_PARAMETER',\n CUSTOM_QUERY_STRING_PARAMETER = 'CUSTOM_QUERY_STRING_PARAMETER',\n}\n\nexport enum QrCodeErrorCorrectionLevel {\n L = 'L',\n M = 'M',\n Q = 'Q',\n H = 'H',\n}\n\nexport enum QrCodeGradientTypes {\n linear = 'linear',\n radial = 'radial',\n}\n\nexport enum QrCodeIntentType {\n STATIC_REDIRECT = 'STATIC_REDIRECT',\n DYNAMIC_REDIRECT = 'DYNAMIC_REDIRECT',\n DYNAMIC_REDIRECT_TO_APP = 'DYNAMIC_REDIRECT_TO_APP',\n}\n\nexport enum QrCodeLocatorKeyType {\n SHORT_URL = 'SHORT_URL',\n HASHED_ID = 'HASHED_ID',\n SECURE_ID = 'SECURE_ID',\n}\n\nexport enum QrCodeSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n}\n\nexport enum QrCodeStatus {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n SUSPENDED = 'SUSPENDED',\n UNSAFE = 'UNSAFE',\n}\n\nexport enum QrCodeType {\n PNG = 'PNG',\n JPEG = 'JPEG',\n SVG = 'SVG',\n png = 'png',\n jpeg = 'jpeg',\n svg = 'svg',\n}\n\nexport enum QueryConditions {\n EQUALS = 'EQUALS',\n LESS_THAN = 'LESS_THAN',\n LESS_THAN_EQUAL = 'LESS_THAN_EQUAL',\n GREATER_THAN = 'GREATER_THAN',\n GREATER_THAN_EQUAL = 'GREATER_THAN_EQUAL',\n BETWEEN = 'BETWEEN',\n BEGINS_WITH = 'BEGINS_WITH',\n}\n\nexport enum ScanTimelineOptions {\n DAILY = 'DAILY',\n HOURLY = 'HOURLY',\n}\n\nexport enum StickerShape {\n SQUARE = 'SQUARE',\n CIRCLE = 'CIRCLE',\n RECTANGLE = 'RECTANGLE',\n}\n\nexport enum TagActions {\n ACTIVATED = 'ACTIVATED',\n MODIFIED = 'MODIFIED',\n}\n\nexport enum TagStates {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n USER_INFO_COLLECTION = 'USER_INFO_COLLECTION',\n}\n\nexport enum UserCredentialsStatus {\n COMPROMISED = 'COMPROMISED',\n CONFIRMED = 'CONFIRMED',\n LEGACY = 'LEGACY',\n NEW_EMAIL = 'NEW_EMAIL',\n NEW_EMAIL_CONFIRMED = 'NEW_EMAIL_CONFIRMED',\n NEW_PASSWORD = 'NEW_PASSWORD',\n SUSPENDED = 'SUSPENDED',\n UNCONFIRMED = 'UNCONFIRMED',\n CONFIRMED_NO_PASSWORD = 'CONFIRMED_NO_PASSWORD',\n CONFIRMED_SSO = 'CONFIRMED_SSO',\n}\n\nexport enum UserGroups {\n appuser = 'appuser',\n appadmin = 'appadmin',\n}\n\nexport enum UserMediaFileTypes {\n pdf = 'pdf',\n jpg = 'jpg',\n HEIC = 'HEIC',\n heic = 'heic',\n png = 'png',\n mov = 'mov',\n mp4 = 'mp4',\n jpeg = 'jpeg',\n ttf = 'ttf',\n otf = 'otf',\n woff = 'woff',\n woff2 = 'woff2',\n csv = 'csv',\n json = 'json',\n gif = 'gif',\n bmp = 'bmp',\n webp = 'webp',\n svg = 'svg',\n tiff = 'tiff',\n webm = 'webm',\n ogg = 'ogg',\n avi = 'avi',\n mpeg = 'mpeg',\n css = 'css',\n}\n\nexport enum UserMediaSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n FILE_TYPE = 'FILE_TYPE',\n CATEGORY = 'CATEGORY',\n}\n\nexport enum UserSettingsDomain {\n DASHBOARD = 'DASHBOARD',\n}\n\n// APPLICATION ENTITIES\n\nexport interface Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface AccountAuth {\n accountId: string\n clientId: string\n created?: string | Date | number | null\n encryptedClientSecret: string\n modified?: string | Date | number | null\n prompt?: string | null\n tenantId?: string | null\n type: AuthTypes\n}\n\nexport interface AccountByAccountId {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByAccountStatus {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n accountStatus: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface AccountByAssetCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n assetCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByClientExec {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n clientExec: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByCompanyName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n companyName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface AccountByContactCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n contactCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByDynamicQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n modified?: string | Date | number | null\n}\n\nexport interface AccountByLastActivity {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n lastActivity: string | Date | number\n modified?: string | Date | number | null\n}\n\nexport interface AccountByPricePlanName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n pricePlanName: string\n}\n\nexport interface AccountByProductName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n productName: string\n timestamp: string | Date | number\n}\n\nexport interface AccountByScanCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n scanCount: number\n}\n\nexport interface AccountBySmsCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n smsCount: number\n}\n\nexport interface AccountByStaticQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n staticQrCodeCount: number\n}\n\nexport interface AccountByTimestamp {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface AccountByUserCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n userCount: number\n}\n\nexport interface AccountDomain {\n accountId: string\n cnameValue?: string | null\n created?: string | Date | number | null\n customDomain: string\n hostedZoneId?: string | null\n modified?: string | Date | number | null\n nameServers?: Array<any> | null\n projectIds?: Array<any> | null\n status?: DomainStatus\n stepSchedulerId?: string | null\n title?: string | null\n type?: AccountDomainTypes\n}\n\nexport interface AccountDomainByType {\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n customDomain: string\n modified?: string | Date | number | null\n timestamp: string | Date | number\n type: string\n}\n\nexport interface AccountEmailContact {\n accountId: string\n contactId: string\n created?: string | Date | number | null\n email: string\n modified?: string | Date | number | null\n}\n\nexport interface AccountInstalledApp {\n accountId: string\n appAccountId: string\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId?: string | null\n}\n\nexport interface AccountInvitation {\n accountId: string\n companyName?: string | null\n created?: string | Date | number | null\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId: string\n lastName: string\n modified?: string | Date | number | null\n sendersFirstName: string\n sendersLastName: string\n sendersUserId?: string | null\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface AccountInvitationRequestBody {\n email: string\n firstName: string\n lastName: string\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface AccountPhoneContact {\n accountId: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n phone: string\n}\n\nexport interface AccountPlugin {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n isEnabled?: boolean\n modified?: string | Date | number | null\n pluginConfig?: NestedKeyValueObject\n pluginId: string\n}\n\nexport interface AccountPublishedApp {\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n}\n\nexport interface AccountResponse extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface AccountScan {\n accountId: string\n assetId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n scanId: string\n}\n\nexport interface AccountSmsCampaign {\n accountId: string\n campaignInfo?: SmsCampaignRequest | null\n campaignStatus?: string | null\n created?: string | Date | number | null\n errorCode?: string | null\n lastFetchedAt?: string | Date | number | null\n modified?: string | Date | number | null\n rejectionReason?: string | null\n twilioAccountSid: string\n twilioPhoneNumber?: string | null\n twilioPhoneNumberSid?: string | null\n}\n\nexport interface AccountUser {\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n userId: string\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface ApiKey {\n apiKeyId: string\n created?: string | Date | number | null\n description?: string | null\n key: string\n modified?: string | Date | number | null\n name: string\n}\n\nexport interface ApiKeyCredentials {\n algorithm?: string\n apiKeyId: string\n created?: string | Date | number | null\n description?: string | null\n invalidAttemptCount: number\n key: string\n modified?: string | Date | number | null\n name: string\n secret?: string | null\n status: string\n}\n\nexport interface ApiKeySessionResponseBody {\n apiKeyId: string\n expires: string | Date | number\n scope: AuthTokenScope\n}\n\nexport interface App {\n appDetailMedia?: string[] | null\n appId: string\n appName: string\n appPrice: number\n appStoreThumbnail?: string | null\n appWebhook?: string | null\n bannerImage?: string | null\n cardImage?: string | null\n categories?: Array<any> | null\n created?: string | Date | number | null\n description?: string | null\n featured?: boolean\n features?: string | null\n heroImage?: string | null\n isPublished?: boolean\n keywords?: Array<any> | null\n logo?: string | null\n modified?: string | Date | number | null\n ownerAccountId: string\n pricePlanPoints?: Array<any> | null\n tagline?: string | null\n uiUrl: string\n website?: string | null\n}\n\nexport interface AppAccount {\n appAccountId: string\n appId: string\n appName: string\n assetCount: number\n contactCount: number\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n emailCount: number\n lastScanId?: string | null\n mainAccountId: string\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n userCount: number\n webSessionCount?: number | null\n}\n\nexport interface AppBasicDetails {\n appAccountId: string\n appId: string\n appLogo?: string | null\n appName: string\n mainAccountId: string\n}\n\nexport interface AppByName {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AppByTimestamp {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface Asset {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n dynamicQrCodeCount: number\n isValidChildAssets?: boolean | null\n isValidCustomAttributes?: boolean | null\n lastCommittedCustomAttributes?: NestedKeyValueObject | null\n lastGeolocationScanTime?: string | Date | number | null\n lastScanGeolocationCoordinates?: string | null\n lastScanId?: string | null\n lastScanLocationCoordinates?: string | null\n lastScanTime?: string | Date | number | null\n locationId?: string | null\n mediaCount?: number | null\n mediaIds?: Array<any> | null\n modified?: string | Date | number | null\n name: string\n parentAssetId?: string | null\n projectId: string\n qrCodeLinks?: Array<any> | null\n scanCount: number\n state?: string | null\n staticQrCodeCount: number\n thumbnails?: Array<any> | null\n userMedias?: UserMedia[] | null\n webSessionCount?: number | null\n willCreateSession?: boolean | null\n}\n\nexport interface AssetByAssetTypeNameAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByNumberCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue: number\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface AssetByStateAssetTypeName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStateAssetTypeNameAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStateName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStateNumberCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue: number\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state: string\n}\n\nexport interface AssetByStateQrCodeCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeCount: number\n state?: string\n}\n\nexport interface AssetByStateScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n scanCount: number\n state?: string\n}\n\nexport interface AssetByStateStringCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue?: string | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state: string\n}\n\nexport interface AssetByStateTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStringCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue?: string | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface AssetContact {\n assetId: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n type?: string | null\n}\n\nexport interface AssetContactByNumberCustomAttribute {\n _prefix?: string\n assetId: string\n contactId: string\n created?: string | Date | number | null\n indexValue: number\n modified?: string | Date | number | null\n}\n\nexport interface AssetContactByRelationshipType {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n type: string\n}\n\nexport interface AssetContactByStringCustomAttribute {\n _prefix?: string\n assetId: string\n contactId: string\n created?: string | Date | number | null\n indexValue?: string | null\n modified?: string | Date | number | null\n}\n\nexport interface AssetFieldsObject {\n assetTypeId?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name?: string | null\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface AssetGraph {\n accountId: string\n appAccountId?: string | null\n assetGraphId: string\n created?: string | Date | number | null\n direction?: string\n edges?: AssetGraphEdge[] | null\n modified?: string | Date | number | null\n name: string\n nodes: AssetGraphNode[]\n projectId: string\n}\n\nexport interface AssetGraphByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetGraphId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface AssetGraphEdge {\n source: string\n target: string\n}\n\nexport interface AssetGraphNode {\n assetId: string\n}\n\nexport interface AssetHistory {\n _timestamp: string | Date | number\n appAccountId?: string | null\n appId?: string | null\n assetId?: string | null\n assetTypeId?: string | null\n batchId?: string | null\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n dynamicQrCodeCount?: number | null\n expiresAt?: string | Date | number | null\n isValidChildAssets?: boolean | null\n isValidCustomAttributes?: boolean | null\n lastCommittedCustomAttributes?: NestedKeyValueObject | null\n lastGeolocationScanTime?: string | Date | number | null\n lastScanGeolocationCoordinates?: string | null\n lastScanId?: string | null\n lastScanLocationCoordinates?: string | null\n lastScanTime?: string | Date | number | null\n locationId?: string | null\n mediaCount?: number | null\n mediaIds?: Array<any> | null\n modified?: string | Date | number | null\n name?: string | null\n parentAssetId?: string | null\n projectId?: string | null\n qrCodeLinks?: Array<any> | null\n scanCount?: number | null\n state?: string | null\n staticQrCodeCount?: number | null\n thumbnails?: Array<any> | null\n userMedias?: UserMedia[] | null\n webSessionCount?: number | null\n willCreateSession?: boolean | null\n}\n\nexport interface AssetNeighbor {\n created?: string | Date | number | null\n modified?: string | Date | number | null\n source: string\n target: string\n type?: string\n}\n\nexport interface AssetType {\n accountId: string\n appAccountId?: string | null\n appId?: string | null\n assetTypeId: string\n category?: string | null\n childItems?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceCount: number\n instanceProperties?: NestedKeyValueObject | null\n intent?: string | null\n isPreviouslyUsed?: boolean\n managedCount: number\n modified?: string | Date | number | null\n name: string\n staticProperties?: NestedKeyValueObject | null\n usabilityState: AssetTypeUsabilityState\n}\n\nexport interface AssetTypeByLocation {\n assetTypeId: string\n created?: string | Date | number | null\n instanceCount: number\n locationId: string\n locationName?: string | null\n managedCount: number\n modified?: string | Date | number | null\n}\n\nexport interface AssetTypeByStatusName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n assetTypeName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface AssetTypeByStatusTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface BadUrlAttempt {\n accountId: string\n appAccountId?: string | null\n assetContent: NestedKeyValueObject\n assetId: string\n badUrlAttemptId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId?: string | null\n qrCodeId: string\n timestamp: string | Date | number\n url: string\n}\n\nexport interface BadUrlAttemptByTimestamp {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n badUrlAttemptId?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId?: string | null\n qrCodeId?: string | null\n timestamp: string | Date | number\n url: string\n}\n\nexport interface BadUrlAttemptByUrl {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n badUrlAttemptId?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId?: string | null\n qrCodeId?: string | null\n timestamp: string | Date | number\n url: string\n}\n\nexport interface BadUrlUsage {\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n usageCount: number\n}\n\nexport interface BadUrlUsageByCreated {\n _GLOBAL: string\n _created: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface BadUrlUsageByModified {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface BadUrlUsageByUrl {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface BadUrlUsageByUsageCount {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n usageCount: number\n}\n\nexport interface Batch {\n accountId: string\n appAccountId?: string | null\n assetCount: number\n batchId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n lastPrinted?: string | Date | number | null\n modified?: string | Date | number | null\n name?: string | null\n projectId: string\n qrCodeCount: number\n source?: string | null\n tagTypeId?: string | null\n timesPrinted: number\n}\n\nexport interface BatchByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n batchId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n source?: string | null\n timestamp: string | Date | number\n}\n\nexport interface CareUIAccounByIdResponse extends Account {\n accountId: string\n accountStatus?: AccountStatus\n appId?: string | null\n appName?: string | null\n assetCount: number\n campaignStatus?: string | null\n clientExec?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n ownerEmail: string\n ownerFirstName: string\n ownerLastName: string\n ownerMiddleName?: string | null\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n pricePlanName: string\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface CareUIAccountInGetUserResponse {\n accountId: string\n companyName: string\n userRole?: string | null\n userRoleIds?: Array<any>\n}\n\nexport interface CareUIAppResponse {\n createdDate: string | Date | number\n id: string\n name: string\n}\n\nexport interface CareUIClientExecResponse {\n displayName: string\n id: string\n}\n\nexport interface CareUIPortalAccountResponse extends Account {\n accountId: string\n accountStatus?: AccountStatus\n adminUserName: string\n assetCount: number\n campaignStatus?: string | null\n clientExec?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n createdDate: string | Date | number\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastActivity?: string | Date | number | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n pricePlanName: string\n productName: string\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface CareUIPortalUserResponse extends User {\n created?: string | Date | number | null\n createdDate: string | Date | number\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface CareUIUserByIdResponse extends User {\n accounts: CareUIAccountInGetUserResponse[]\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface Contact {\n accountId: string\n appAccountId?: string | null\n appId?: string | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName: string\n isVisible?: boolean | null\n lastCommittedAttributes?: NestedKeyValueObject | null\n lastName: string\n lastScan?: LastScan | null\n lastScanProjectName?: string | null\n lastSms?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName: string\n modified?: string | Date | number | null\n nickname: string\n scanCount: number\n type?: string | null\n}\n\nexport interface ContactAccountCustomConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactAccountDataConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactAccountEmailConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactAccountSmsConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactByNumberCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n contactId: string\n created?: string | Date | number | null\n indexValue: number\n modified?: string | Date | number | null\n}\n\nexport interface ContactByStringCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n contactId: string\n created?: string | Date | number | null\n indexValue?: string | null\n modified?: string | Date | number | null\n}\n\nexport interface ContactConsent {\n accountId?: string | null\n accountName?: string | null\n consentStatus?: ConsentStatus | null\n consentType?: ConsentType | null\n consented: boolean\n consentedAt: string | Date | number\n contactId?: string | null\n customAttributes?: NestedKeyValueObject | null\n projectId?: string | null\n projectName?: string | null\n url?: string | null\n urls?: string[] | null\n}\n\nexport interface ContactHistory {\n _timestamp: string | Date | number\n accountId?: string | null\n appAccountId?: string | null\n appId?: string | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n contactId?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n expiresAt?: string | Date | number | null\n firstName?: string | null\n isVisible?: boolean | null\n lastCommittedAttributes?: NestedKeyValueObject | null\n lastName?: string | null\n lastScan?: LastScan | null\n lastScanProjectName?: string | null\n lastSms?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n modified?: string | Date | number | null\n nickname?: string | null\n scanCount?: number | null\n type?: string | null\n}\n\nexport interface ContactInvite {\n accountId: string\n appInviteUrl?: string | null\n companyName?: string | null\n created?: string | Date | number | null\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId: string\n invitedByUserId: string\n invitedByUserName?: string | null\n isConsumed?: boolean\n lastName: string\n modified?: string | Date | number | null\n projectId: string\n refreshCount: number\n userRole?: AccountUserRole | null\n}\n\nexport interface ContactMailingAddress {\n address?: string | null\n city?: string | null\n country?: string | null\n postalOrZip?: string | null\n provinceOrState?: string | null\n}\n\nexport interface ContactProjectCustomConsent {\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactProjectDataConsent {\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactProjectEmailConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactProjectSmsConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactUser {\n accountId: string\n companyName?: string | null\n contactId: string\n created?: string | Date | number | null\n email: string\n firstName?: string | null\n invalidAttemptCount: number\n lastName?: string | null\n modified?: string | Date | number | null\n password?: string | null\n revokedAt?: string | Date | number | null\n status?: UserCredentialsStatus\n userRole?: AccountUserRole | null\n}\n\nexport interface CreditCard {\n brand: string\n country: string\n expMonth: number\n expYear: number\n last4: string\n postalCode: string\n}\n\nexport interface CustomAttribute {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n customAttributeName: string\n fieldType: FieldType\n mappedCAName?: string | null\n modified?: string | Date | number | null\n}\n\nexport interface DomainMappedQRLocatorKey {\n accountId: string\n created?: string | Date | number | null\n customDomain: string\n locatorKey: string\n modified?: string | Date | number | null\n qrCodeId: string\n serializedLocatorKey: string\n}\n\nexport interface EmailInvitation {\n accountId: string\n created?: string | Date | number | null\n email: string\n expiresAt?: string | Date | number | null\n invitationId: string\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByAccountId {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByAccountStatus {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n accountStatus: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByAssetCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n assetCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByClientExec {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n clientExec: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByCompanyName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n companyName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByContactCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n contactCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByDynamicQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByLastActivity {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n lastActivity: string | Date | number\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByPricePlanName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n pricePlanName: string\n}\n\nexport interface InternalAccountByProductName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n productName: string\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByScanCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n scanCount: number\n}\n\nexport interface InternalAccountBySmsCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n smsCount: number\n}\n\nexport interface InternalAccountByStaticQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n staticQrCodeCount: number\n}\n\nexport interface InternalAccountByTimestamp {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByUserCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n userCount: number\n}\n\nexport interface Invoice {\n amount: number\n downloadUrl?: string | null\n dueDate?: string | null\n id: string\n name: string\n paymentMethod?: CreditCard | null\n status?: InvoiceStatus\n}\n\nexport interface Job {\n accountId: string\n appAccountId?: string | null\n callbackUrl?: string | null\n childJobIds?: Array<any> | null\n created?: string | Date | number | null\n errorMessage?: NestedKeyValueObject | null\n expires?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileExpiry?: string | Date | number | null\n fileName?: string | null\n jobId: string\n modified?: string | Date | number | null\n name?: string | null\n outputUrl?: string | null\n outputUrls?: Array<any>\n parentJobId?: string | null\n progress?: number | null\n projectId?: string | null\n source?: string | null\n status?: JobStatus\n type: JobType\n}\n\nexport interface JobByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n jobId: string\n modified?: string | Date | number | null\n projectId?: string | null\n source?: string | null\n timestamp: string | Date | number\n}\n\nexport interface LastScan {\n assetId: string\n assetName: string\n browserName?: string | null\n browserVersion?: string | null\n cpuArchitecture?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n deviceModel?: string | null\n deviceType?: string | null\n deviceVendor?: string | null\n engineName?: string | null\n engineVersion?: string | null\n geolocationCityName?: string | null\n geolocationCountryCode?: string | null\n geolocationCountryName?: string | null\n geolocationLatitude?: string | null\n geolocationLongitude?: string | null\n geolocationPostalCode?: string | null\n geolocationRegionCode?: string | null\n geolocationRegionName?: string | null\n ipAddress?: string | null\n locationCityName?: string | null\n locationCountryCode?: string | null\n locationCountryName?: string | null\n locationLatitude?: string | null\n locationLongitude?: string | null\n locationPostalCode?: string | null\n locationRegionCode?: string | null\n locationRegionName?: string | null\n locationTimeZone?: string | null\n modified?: string | Date | number | null\n osName?: string | null\n osVersion?: string | null\n projectId: string\n qrCodeId?: string | null\n scanId: string\n scanTime: string | Date | number\n sessionId?: string | null\n userAgent?: string | null\n}\n\nexport interface Location {\n accountId: string\n address?: string | null\n appAccountId?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n isPreviouslyUsed?: boolean\n locationId: string\n modified?: string | Date | number | null\n name: string\n state?: string | null\n}\n\nexport interface LocationByStateName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface LocationByStateTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface LocationByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface MostScannedAssetResponse {\n assetId?: string | null\n lastScanDate?: string | Date | number | null\n name: string\n projectId?: string | null\n todaysScansCount?: number | null\n totalScansCount?: number | null\n weeklyScansCount?: number | null\n}\n\nexport interface MultipartUploadPart {\n ETag?: string | null\n PartNumber?: number\n}\n\nexport interface NestedAsset {\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name: string\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface NestedContact {\n asset?: NestedAsset | null\n assetId?: string | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface NestedQrCode {\n customQueryStringParameterName?: string\n dynamicRedirectType?: QrCodeDynamicRedirectType\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKeyType?: QrCodeLocatorKeyType\n serializedLocatorKey?: string | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface NestedTypedAsset {\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name?: string | null\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n}\n\nexport interface NewAppByName {\n _GLOBAL: string\n _prefix?: string\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAppByTimestamp {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetByAssetType {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetByQrCodeCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeCount: number\n}\n\nexport interface NewAssetByScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n scanCount: number\n}\n\nexport interface NewAssetByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetTypeByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n assetTypeName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface NewAssetTypeByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface NewLocationByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface NewProjectByAssetCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface NewProjectByContactCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n contactCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface NewProjectByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n projectName: string\n timestamp: string | Date | number\n}\n\nexport interface NewProjectByQrCodeCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeCount: number\n}\n\nexport interface NewProjectByScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanCount: number\n}\n\nexport interface NewProjectByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewPublishedAppByName {\n _GLOBAL: string\n _prefix?: string\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewPublishedAppByTimestamp {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeByAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n batchId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeByScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n scanCount: number\n}\n\nexport interface NewQrCodeByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeLogoByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n qrCodeLogoId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeStylingTemplateByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n stylingTemplateId: string\n stylingTemplateName: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeStylingTemplateByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n stylingTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface NewScanByAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n contactId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n sessionId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface NewScanByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n contactId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n sessionId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface PatchApp {\n appDetailMedia?: string[] | null\n appPrice?: number | null\n appStoreThumbnail?: string | null\n appWebhook?: string | null\n bannerImage?: string | null\n cardImage?: string | null\n categories?: Array<any> | null\n created?: string | Date | number | null\n description?: string | null\n featured?: boolean | null\n features?: string | null\n heroImage?: string | null\n isPublished?: boolean | null\n keywords?: Array<any> | null\n logo?: string | null\n modified?: string | Date | number | null\n pricePlanPoints?: Array<any> | null\n tagline?: string | null\n uiUrl?: string | null\n website?: string | null\n}\n\nexport interface PhoneSession {\n contactId: string\n contactPhone: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n modified?: string | Date | number | null\n smsId: string\n twilioPhone: string\n}\n\nexport interface Plugin {\n appId: string\n created?: string | Date | number | null\n icon: string\n installCount: number\n modified?: string | Date | number | null\n name: string\n pluginId: string\n status?: PluginStatus\n version?: number\n}\n\nexport interface PluginByModified {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n pluginId: string\n timestamp: string | Date | number\n}\n\nexport interface PluginByName {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n pluginId: string\n timestamp: string | Date | number\n}\n\nexport interface PricePlan {\n annualPrice: number\n assets: number\n contacts: number\n created?: string | Date | number | null\n dataExport: boolean\n downgradeDate?: string | Date | number | null\n emails: number\n freeEmailPerMonth?: number | null\n freeSmsPerMonth?: number | null\n mms: number\n modified?: string | Date | number | null\n monthlyPrice: number\n name: string\n nextPricePlanName?: string | null\n paymentPeriod?: string | null\n pricePerAsset: number\n pricePerContact: number\n pricePerEmail: number\n pricePerSMS: number\n pricePlanId: string\n projects: number\n qrCodes: number\n reporting?: PricePlanReporting\n roleBasedManagement: boolean\n sms: number\n stripeCustomerId: string\n stripeSubscriptionId: string\n totalScans: number\n users: number\n visibleContacts?: number | null\n}\n\nexport interface PricePlanPeriod {\n assetsLimit?: number | null\n assetsTotal: number\n contactsLimit?: number | null\n contactsTotal: number\n created?: string | Date | number | null\n emailAmountCharged?: number | null\n emailsLimit?: number | null\n emailsSentThisPeriod?: number | null\n emailsTotal: number\n freeEmailPerMonth?: number | null\n freeSmsPerMonth?: number | null\n invoiceId?: string | null\n mmsAmountCharged?: number | null\n mmsLimit?: number | null\n mmsSentThisPeriod?: number | null\n mmsTotal: number\n modified?: string | Date | number | null\n period: string | Date | number\n periodEndDate: string | Date | number\n pricePlanId: string\n projectsLimit?: number | null\n projectsTotal: number\n qrCodesLimit?: number | null\n qrCodesTotal: number\n qrScansLimit?: number | null\n scansUsedTotal: number\n smsAmountCharged?: number | null\n smsLimit?: number | null\n smsSentThisPeriod?: number | null\n smsTotal: number\n status?: string | null\n usersLimit?: number | null\n usersTotal: number\n visibleContacts?: number | null\n}\n\nexport interface PrintJob {\n accountId: string\n appAccountId?: string | null\n assetIds?: Array<any> | null\n callbackUrl?: string | null\n created?: string | Date | number | null\n createdBy?: string | null\n errorMessage?: NestedKeyValueObject | null\n fileExpiry?: string | Date | number | null\n imageOptions?: QrCodeImageOptions | null\n lastPrintedAt?: string | Date | number | null\n modified?: string | Date | number | null\n name?: string\n numberOfQrCodes?: number | null\n outputUrl?: string | null\n outputUrls?: Array<any>\n parentJobId?: string | null\n printJobId: string\n printOptions?: PrintOptions | null\n printPageTemplateName?: string | null\n printStickerTemplateName?: string | null\n progress?: number | null\n projectId?: string | null\n serializedFabric?: NestedKeyValueObject | null\n sortField?: QrCodeSortingTypes | null\n source?: string | null\n status?: JobStatus\n stylingTemplateId?: string | null\n type?: JobType\n}\n\nexport interface PrintOptions {\n bleed?: boolean | null\n bottomCaptionLabel?: Label\n bottomCaptionLabelHorizontalOffset?: number | null\n bottomCaptionLabelVerticalOffset?: number | null\n bottomLabel?: Label\n customBottomCaptionLabel?: string | null\n customBottomLabel?: string | null\n customMaxLength?: number | null\n customMiddleLabel?: string | null\n customTopCaptionLabel?: string | null\n customTopLabel?: string | null\n fontColor?: string | null\n fontFamily?: string | null\n format?: PrintFormat | null\n horizontalMargin?: number | null\n horizontalOffset?: number | null\n horizontalPadding?: number | null\n isMiniBatch?: boolean | null\n largeFontSize?: number | null\n maxLength?: number | null\n middleLabel?: Label\n numberOfColumns?: number | null\n numberOfRows?: number | null\n orientation?: PrintOrientation\n pageSize?: Array<any> | null\n prefixLocatorKey?: boolean | null\n printMode?: PrintMode\n printPageTemplateId?: string | null\n printStickerTemplateId?: string | null\n printTemplate?: PrintTemplate | null\n qrCodeHorizontalOffset?: number | null\n qrCodeSize?: number | null\n qrCodeVerticalOffset?: number | null\n quantityPerQr?: number | null\n smallFontSize?: number | null\n stickerBackground?: string | null\n stickerShape?: StickerShape | null\n stickerSize?: Array<any> | null\n topCaptionLabel?: Label | null\n topCaptionLabelHorizontalOffset?: number | null\n topCaptionLabelVerticalOffset?: number | null\n topLabel?: Label\n topLabelMaxLength?: number | null\n topMarginBackground?: string | null\n unit?: PrintUnit\n verticalMargin?: number | null\n verticalOffset?: number | null\n verticalPadding?: number | null\n}\n\nexport interface PrintPageTemplate {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n createdBy: string\n format?: PrintFormat | null\n horizontalMargin: number\n horizontalPadding: number\n isDeleted?: boolean | null\n modified?: string | Date | number | null\n name: string\n numberOfColumns: number\n numberOfRows: number\n orientation?: PrintOrientation | null\n pageSize: Array<any>\n printMode?: PrintMode | null\n printPageTemplateId: string\n printTemplate?: PrintTemplate | null\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit?: PrintUnit\n verticalMargin: number\n verticalPadding: number\n}\n\nexport interface PrintPageTemplateByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n printPageTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface PrintPageTemplateByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n printPageTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface PrintStickerTemplate {\n accountId: string\n appAccountId?: string | null\n bleed?: boolean | null\n created?: string | Date | number | null\n createdBy: string\n isDeleted?: boolean | null\n lastUsedAt?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n previewImage?: string | null\n printStickerTemplateId: string\n serializedFabric: NestedKeyValueObject\n stickerShape?: StickerShape\n stickerSize?: Array<any>\n unit?: PrintUnit\n}\n\nexport interface PrintStickerTemplateByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n printStickerTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface PrintStickerTemplateByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n printStickerTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface Project {\n accountId: string\n appAccountId?: string | null\n appId?: string | null\n assetCount: number\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customDomain?: string | null\n description?: string | null\n dynamicQrCodeCount: number\n lastScanId?: string | null\n mediaCount?: number | null\n micrositeCustomDomain?: string | null\n modified?: string | Date | number | null\n name: string\n projectId: string\n scanCount: number\n staticQrCodeCount: number\n status?: ProjectStatus\n webSessionCount?: number | null\n workflowCustomDomain?: string | null\n}\n\nexport interface ProjectAccount {\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectContact {\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectContactByNumberCustomAttribute {\n _prefix?: string\n contactId: string\n created?: string | Date | number | null\n indexValue: number\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectContactByStringCustomAttribute {\n _prefix?: string\n contactId: string\n created?: string | Date | number | null\n indexValue?: string | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectDomain {\n created?: string | Date | number | null\n customDomain: string\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectEmailContact {\n contactId: string\n created?: string | Date | number | null\n email: string\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectPhoneContact {\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n phone: string\n projectId: string\n}\n\nexport interface ProjectScan {\n assetId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n}\n\nexport interface PublishedAppByName {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface PublishedAppByTimestamp {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface QrCode {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n customDomain?: string | null\n customQueryStringParameterName?: string\n dynamicRedirectType?: QrCodeDynamicRedirectType\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKey: string\n locatorKeyType?: QrCodeLocatorKeyType\n modified?: string | Date | number | null\n name: string\n projectId?: string | null\n qrCodeId: string\n qrDomain?: string | null\n scanCount: number\n serializedLocatorKey?: string | null\n status?: QrCodeStatus\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface QrCodeByIntent {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n intent: string\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n timestamp: string | Date | number\n}\n\nexport interface QrCodeImage {\n data: string\n options?: QrCodeImageOptions\n}\n\nexport interface QrCodeImageOptions {\n background?: string\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel\n foreground?: string\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number\n margin?: number\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number\n version?: number | null\n width?: number\n}\n\nexport interface QrCodeImageOptionsNoDefaults {\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n version?: number | null\n width?: number | null\n}\n\nexport interface QrCodeLink {\n created?: string | Date | number | null\n modified?: string | Date | number | null\n qrCodeId: string\n qrCodeLink: string\n}\n\nexport interface QrCodeLocator {\n created?: string | Date | number | null\n locatorKey: string\n modified?: string | Date | number | null\n qrCodeId: string\n}\n\nexport interface QrCodeLogo {\n accountId: string\n appAccountId?: string | null\n cacheControl?: boolean | null\n contentDisposition?: string | null\n contentType: string\n created?: string | Date | number | null\n createdBy: string\n expiresAt?: string | Date | number | null\n extension: string\n fileId?: string\n fileName?: string | null\n fileNameBase?: string\n fileType?: string | null\n from?: string | null\n hidden?: boolean\n lastModifiedBy?: string | null\n length?: number | null\n modified?: string | Date | number | null\n qrCodeLogoId?: string\n rangeTimestamp?: string | null\n state?: string\n to?: string | null\n url: string\n}\n\nexport interface QrCodeStylingTemplate {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n createdBy: string\n hidden?: boolean | null\n imageOptions?: QrCodeImageOptions\n lastModifiedBy: string\n modified?: string | Date | number | null\n name: string\n projectId?: string | null\n qrCodeLogo?: QrCodeLogo | null\n stylingTemplateId: string\n}\n\nexport interface RequestApp {\n appDetailMedia?: string[] | null\n appName: string\n appPrice: number\n appStoreThumbnail?: string | null\n appWebhook?: string | null\n bannerImage?: string | null\n cardImage?: string | null\n categories?: Array<any> | null\n created?: string | Date | number | null\n description?: string | null\n featured: boolean\n features?: string | null\n heroImage?: string | null\n isPublished: boolean\n keywords?: Array<any> | null\n logo?: string | null\n modified?: string | Date | number | null\n pricePlanPoints?: Array<any> | null\n tagline?: string | null\n uiUrl: string\n website?: string | null\n}\n\nexport interface RequestSessionAction {\n actionId?: string | null\n actionType?: string | null\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n name?: string | null\n scanId?: string | null\n tags?: Array<any> | null\n timestamp?: string | Date | number | null\n willUpdateSession?: boolean\n}\n\nexport interface ReservedMappedQrLocatorKey {\n _prefix?: string\n created?: string | Date | number | null\n customDomain: string\n isSingle?: boolean\n isStart: boolean\n locatorKeyNumber: number\n modified?: string | Date | number | null\n pairLocatorKeyNumber: number\n prefix: string\n}\n\nexport interface ResponseAccountPlugin {\n accountId: string\n appAccountId?: string | null\n icon: string\n isEnabled?: boolean\n name: string\n pluginConfig?: NestedKeyValueObject\n pluginId: string\n}\n\nexport interface ResponseAsset {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n assetTypeId?: string | null\n assetTypeName?: string | null\n batchId?: string | null\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n customDomain?: string | null\n description?: string | null\n dynamicQrCodeCount: number\n isValidChildAssets?: boolean | null\n isValidCustomAttributes?: boolean | null\n lastGeolocationScanTime?: string | Date | number | null\n lastScan?: LastScan | null\n lastScanGeolocationCoordinates?: string | null\n lastScanId?: string | null\n lastScanLocationCoordinates?: string | null\n lastScanTime?: string | Date | number | null\n locationId?: string | null\n mediaIds?: Array<any>\n modified?: string | Date | number | null\n name: string\n parentAssetId?: string | null\n projectId: string\n projectName?: string | null\n qrCodes?: ResponseQrCode[] | null\n scanCount: number\n state?: string | null\n staticQrCodeCount: number\n thumbnails?: Array<any> | null\n userMedias?: UserMedia[] | null\n willCreateSession?: boolean | null\n}\n\nexport interface ResponseAssetGraph extends AssetGraph {\n accountId: string\n appAccountId?: string | null\n assetGraphId: string\n created?: string | Date | number | null\n direction?: string\n edges?: AssetGraphEdge[] | null\n modified?: string | Date | number | null\n name: string\n nodes: ResponseAssetGraphNode[]\n projectId: string\n}\n\nexport interface ResponseAssetGraphNode extends AssetGraphNode {\n assetId: string\n name?: string | null\n}\n\nexport interface ResponseBodyUser {\n created: string | Date | number\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId?: string | null\n lastName: string\n middleName: string\n userId?: string | null\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface ResponseQrCode {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n created?: string | Date | number | null\n customDomain?: string | null\n dynamicRedirectType?: QrCodeDynamicRedirectType\n image: QrCodeImage\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKey: string\n locatorKeyType?: QrCodeLocatorKeyType\n modified?: string | Date | number | null\n name?: string | null\n projectId?: string | null\n qrCodeId: string\n qrCodeLinks?: Array<any> | null\n scanCount: number\n serializedLocatorKey?: string | null\n status?: QrCodeStatus\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface ResponseSession {\n accountId?: string | null\n appAccountId?: string | null\n assetId?: string | null\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n endTime?: string | Date | number | null\n lastActionId?: string | Date | number | null\n lastScanId?: string | null\n lastSessionAction?: SessionAction | null\n modified?: string | Date | number | null\n newTags?: Array<any> | null\n projectId?: string | null\n qrCodeId?: string | null\n sessionActions?: SessionAction[] | null\n sessionId?: string | null\n tagCounter?: number | null\n tags?: Array<any> | null\n}\n\nexport interface Scan {\n assetId: string\n assetName: string\n browserName?: string | null\n browserVersion?: string | null\n cpuArchitecture?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n deviceModel?: string | null\n deviceType?: string | null\n deviceVendor?: string | null\n engineName?: string | null\n engineVersion?: string | null\n geolocationCityName?: string | null\n geolocationCountryCode?: string | null\n geolocationCountryName?: string | null\n geolocationLatitude?: string | null\n geolocationLongitude?: string | null\n geolocationPostalCode?: string | null\n geolocationRegionCode?: string | null\n geolocationRegionName?: string | null\n ipAddress?: string | null\n locationCityName?: string | null\n locationCountryCode?: string | null\n locationCountryName?: string | null\n locationLatitude?: string | null\n locationLongitude?: string | null\n locationPostalCode?: string | null\n locationRegionCode?: string | null\n locationRegionName?: string | null\n locationTimeZone?: string | null\n modified?: string | Date | number | null\n osName?: string | null\n osVersion?: string | null\n projectId: string\n qrCodeId?: string | null\n scanId: string\n scanTime: string | Date | number\n sessionId?: string | null\n userAgent?: string | null\n}\n\nexport interface ScanContact {\n assetId: string\n assetName: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n}\n\nexport interface SessionAction {\n accountId: string\n actionId: string\n actionType?: string | null\n appAccountId?: string | null\n assetId: string\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n name?: string | null\n projectId: string\n qrCodeId: string\n scanId?: string | null\n sessionId: string\n tags?: Array<any> | null\n}\n\nexport interface SessionActionByActionType {\n _prefix?: string\n accountId: string\n actionId: string\n actionType?: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface SessionActionByCategory {\n _prefix?: string\n accountId: string\n actionId: string\n appAccountId?: string | null\n assetId?: string | null\n category?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface SessionActionByName {\n _prefix?: string\n accountId: string\n actionId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name?: string\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface SessionActionByTimestamp {\n _prefix?: string\n accountId: string\n actionId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface Sms {\n body: string\n contactId: string\n created?: string | Date | number | null\n delivered?: boolean | null\n deliveredAt?: string | Date | number | null\n from: string\n inbound: boolean\n modified?: string | Date | number | null\n price?: number | null\n priceUnit: string\n projectId: string\n responses?: SmsResponse[] | null\n smsId: string\n smsTemplateName?: string | null\n status?: string | null\n to: string\n}\n\nexport interface SmsCampaignRequest {\n businessCity: string\n businessContactEmail: string\n businessContactFirstName: string\n businessContactLastName: string\n businessContactPhone: string\n businessCountry?: string\n businessName: string\n businessPostalCode: string\n businessStateProvinceRegion: string\n businessStreetAddress2?: string | null\n businessStreetAddress: string\n businessWebsite: string\n messageVolume?: string\n productionMessageSample: string\n useCaseCategories: CampaignUseCaseCategory\n useCaseSummary: string\n}\n\nexport interface SmsResponse {\n body: string\n contactPhone: string\n smsId: string\n twilioPhone: string\n}\n\nexport interface SmsTemplate {\n body?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n responseUrl?: string | null\n smsTemplateName: string\n statusUrl?: string | null\n}\n\nexport interface StepScheduler {\n accountId: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n modified?: string | Date | number | null\n retryCount: number\n secondsInterval: number\n stepSchedulerId: string\n targetEntityType: string\n targetPkSk: string\n}\n\nexport interface TagCreationAccount {\n _GLOBAL?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n productLine: string\n}\n\nexport interface TagType {\n accountId: string\n commonProperties?: NestedKeyValueObject | null\n created?: string | Date | number | null\n imageOptions?: QrCodeImageOptions | null\n incrementor?: Array<any>\n intent: string\n isAskingForGPS?: boolean\n isUsingPrefixValues?: boolean\n leadingCharacter: string\n modified?: string | Date | number | null\n name: string\n packSize: number\n prefixValues?: Array<any>\n printOptions: NestedKeyValueObject\n startingState?: TagStates\n stylingTemplateId?: string | null\n tagTypeId: string\n}\n\nexport interface TagTypeByLeadingChar {\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n leadingCharacter: string\n modified?: string | Date | number | null\n tagTypeId: string\n timestamp: string | Date | number\n}\n\nexport interface TagTypeByName {\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n tagTypeId: string\n}\n\nexport interface TemporaryCode {\n accountId?: string | null\n appAccountId?: string | null\n codeId: string\n codeType?: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n expires?: string | Date | number | null\n expiresAt?: string | Date | number | null\n modified?: string | Date | number | null\n phoneCode?: string | null\n phoneNumber?: string | null\n status?: string\n}\n\nexport interface URLSafety {\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n isBlacklisted?: boolean\n isThreat?: boolean\n modified?: string | Date | number | null\n threatTypes?: Array<any> | null\n timesChecked: number\n url: string\n}\n\nexport interface URLSafetyByCreated {\n _GLOBAL: string\n _created: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface URLSafetyByModified {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface URLSafetyByTimesChecked {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timesChecked: number\n url: string\n}\n\nexport interface URLSafetyByUrl {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface User {\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface UserByEmail {\n _GLOBAL: string\n _prefix?: string\n created?: string | Date | number | null\n email: string\n modified?: string | Date | number | null\n userId: string\n}\n\nexport interface UserByTimestamp {\n _GLOBAL: string\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n userId: string\n}\n\nexport interface UserMedia {\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n cacheControl?: boolean | null\n category?: string | null\n containsVirus?: boolean | null\n contentDisposition?: string | null\n contentType: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n extension: string\n fileId?: string\n fileName?: string | null\n fileNameBase?: string\n fileType: string\n from?: string | null\n hidden?: boolean | null\n lastScannedAt?: string | Date | number | null\n length?: number | null\n mediaId?: string\n modified?: string | Date | number | null\n name?: string | null\n projectId?: string | null\n rangeTimestamp?: string | null\n scanId?: string | null\n size?: number | null\n state?: string\n to?: string | null\n url?: string | null\n}\n\nexport interface UserMediaByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n mediaId: string\n modified?: string | Date | number | null\n name?: string\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserMediaByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n mediaId: string\n modified?: string | Date | number | null\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserMediaByTypeName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileType: string\n mediaId: string\n modified?: string | Date | number | null\n name?: string\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserMediaByTypeTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileType?: string\n mediaId: string\n modified?: string | Date | number | null\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserRole {\n _GLOBAL: string\n created?: string | Date | number | null\n isApiKey?: boolean\n modified?: string | Date | number | null\n name: string\n permissions?: Permission\n roleId: string\n}\n\nexport interface UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface UserSettings {\n created?: string | Date | number | null\n lastSelectedAccountId?: string | null\n modified?: string | Date | number | null\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface WebSession {\n accountId: string\n appAccountId?: string | null\n assetId: string\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n endTime?: string | Date | number | null\n lastActionId?: string | Date | number | null\n lastScanId?: string | null\n modified?: string | Date | number | null\n newTags?: Array<any> | null\n projectId: string\n qrCodeId: string\n sessionId: string\n tagCounter: number\n tags?: Array<any> | null\n}\n\nexport interface WebSessionByCategory {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n category?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface WebSessionByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface S3Object {\n accountId: string\n cacheControl?: boolean | null\n contentDisposition?: string | null\n contentType: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n extension: string\n fileId?: string\n fileName?: string | null\n fileNameBase?: string\n fileType?: string | null\n from?: string | null\n length?: number | null\n modified?: string | Date | number | null\n rangeTimestamp?: string | null\n state?: string\n to?: string | null\n url: string\n}\n\nexport interface S3Storage {\n bucket: string\n domain: string\n internalDomain: string\n partition: string\n}\n\nexport interface S3Image {\n accountId: string\n appAccountId?: string | null\n cacheControl?: boolean | null\n contentDisposition?: string | null\n contentType: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n extension: string\n fileId?: string\n fileName?: string | null\n fileNameBase?: string\n fileType?: string | null\n from?: string | null\n imageId?: string\n internalUrl: string\n length?: number | null\n modified?: string | Date | number | null\n rangeTimestamp?: string | null\n s3Key: string\n state?: string\n to?: string | null\n url: string\n}\n\n// HANDLER INTERFACE TYPES\n\nexport interface ResetApiKeySecretPathParameters {\n apiKeyId: string\n}\n\nexport interface ResetApiKeySecretResponseBody {\n apiKeyId: string\n secret: string\n}\n\nexport interface UpdateApiKeyPathParameters {\n apiKeyId: string\n}\n\nexport interface UpdateApiKeyRequestBody {\n description?: string | null\n name?: string | null\n}\n\nexport interface UpdateApiKeyResponseBody {\n apiKeyId: string\n description?: string | null\n key: string\n name: string\n status: string\n}\n\nexport interface GetAppByAppIdPathParameters {\n appId: string\n}\n\nexport interface GetAppByAppIdResponseBody {\n app: App\n}\n\nexport interface GetPublishedAppsQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n nameSearch?: string | null\n}\n\nexport interface GetPublishedAppsResponseBody {\n apps: App[]\n}\n\nexport interface UpdateAppByAppIdPathParameters {\n appId: string\n}\n\nexport interface UpdateAppByAppIdRequestBody {\n app: PatchApp\n}\n\nexport interface UpdateAppByAppIdResponseBody {\n app: App\n}\n\nexport interface GetAppsQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n nameSearch?: string | null\n}\n\nexport interface GetAppsResponseBody {\n apps: App[]\n}\n\nexport interface GetApiKeyPathParameters {\n apiKeyId: string\n}\n\nexport interface GetApiKeyResponseBody {\n apiKeyId: string\n description?: string | null\n key: string\n name: string\n status: string\n}\n\nexport interface LoadAppPathParameters {\n accountId: string\n appId: string\n}\n\nexport interface LoadAppResponseBody {\n app: App\n expires: string | Date | number\n sessionToken: string\n}\n\nexport interface GetMainAccountByAppAccountIdPathParameters {\n appAccountId: string\n}\n\nexport interface GetMainAccountByAppAccountIdResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface ComposeAssetByAssetTypePathParameters {\n assetId: string\n assetTypeId: string\n}\n\nexport interface ComposeAssetByAssetTypeRequestBody {\n category: string\n childItems?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceProperties?: NestedKeyValueObject | null\n locationId?: string | null\n name?: string | null\n staticProperties?: NestedKeyValueObject | null\n totalCount: number\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface ComposeAssetByAssetTypeResponseBody {\n asset: Asset\n assetId: string\n}\n\nexport interface DeleteAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface DeleteAssetTypeResponseBody {\n assetType: AssetType\n}\n\nexport interface GetAppAccountPathParameters {\n appAccountId: string\n}\n\nexport interface GetAppAccountResponseBody extends AppAccount {\n appAccountId: string\n appId: string\n appName: string\n assetCount: number\n contactCount: number\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n emailCount: number\n lastScanId?: string | null\n mainAccountId: string\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n userCount: number\n webSessionCount?: number | null\n}\n\nexport interface CreateAssetByAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface CreateAssetByAssetTypeRequestBody {\n asset: NestedTypedAsset\n projectId: string\n useCustomDomain?: boolean | null\n}\n\nexport interface CreateAssetByAssetTypeResponseBody {\n asset: ResponseAsset\n assetId: string\n assetType: AssetType\n}\n\nexport interface GetAssetsByAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface GetAssetsByAssetTypeQueryStringParameters {\n ascending?: boolean | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetByAssetTypeSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByAssetTypeResponseBody {\n assetTypeId: string\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface GetAssetTypeByAssetTypeIdPathParameters {\n assetTypeId: string\n}\n\nexport interface GetAssetTypeByAssetTypeIdQueryStringParameters {\n}\n\nexport interface GetAssetTypeByAssetTypeIdResponseBody {\n assetType: AssetType\n}\n\nexport interface GetApiKeySecretPathParameters {\n apiKeyId: string\n}\n\nexport interface GetApiKeySecretResponseBody {\n apiKeyId: string\n secret?: string | null\n}\n\nexport interface UpdateAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface UpdateAssetTypeRequestBody {\n category?: string | null\n childItems?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceProperties?: NestedKeyValueObject | null\n intent?: string | null\n name?: string | null\n staticProperties?: NestedKeyValueObject | null\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface UpdateAssetTypeResponseBody {\n assetType: AssetType\n assetTypeId: string\n}\n\nexport interface GetLocationCountsForAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface GetLocationCountsForAssetTypeQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: LocationSortingTypes | null\n state?: string | null\n}\n\nexport interface GetLocationCountsForAssetTypeResponseBody {\n assetType: AssetType\n assetTypesByLocation: AssetTypeByLocation[]\n count: number\n lastKey?: string | null\n}\n\nexport interface CreateContactByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateContactByAssetIdRequestBody {\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface CreateContactByAssetIdResponseBody {\n asset: Asset\n assetContact: AssetContact\n assetId: string\n contact: Contact\n projectContact: ProjectContact\n}\n\nexport interface UpdateAssetTypeCountAtLocationPathParameters {\n assetTypeId: string\n locationId: string\n}\n\nexport interface UpdateAssetTypeCountAtLocationRequestBody {\n count: number\n isDelta?: boolean\n}\n\nexport interface UpdateAssetTypeCountAtLocationResponseBody {\n assetType: AssetType\n assetTypeByLocation: AssetTypeByLocation\n}\n\nexport interface CreateQrCodeByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateQrCodeByAssetIdRequestBody extends NestedQrCode {\n customQueryStringParameterName?: string\n dynamicRedirectType?: QrCodeDynamicRedirectType\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKeyType?: QrCodeLocatorKeyType\n qrCodes?: NestedQrCode[]\n serializedLocatorKey?: string | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface CreateQrCodeByAssetIdResponseBody {\n asset: Asset\n assetId: string\n locatorKey: string\n qrCode: ResponseQrCode\n qrCodeId: string\n}\n\nexport interface CreateNeighborsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateNeighborsByAssetIdRequestBody {\n neighbors: Array<any>\n}\n\nexport interface DeleteAssetPathParameters {\n assetId: string\n}\n\nexport interface DeleteAssetResponseBody {\n asset: Asset\n}\n\nexport interface GetAssetTypeCountAtLocationPathParameters {\n assetTypeId: string\n locationId: string\n}\n\nexport interface GetAssetTypeCountAtLocationResponseBody {\n assetTypeByLocation: AssetTypeByLocation\n}\n\nexport interface CreateQrCodesByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateQrCodesByAssetIdRequestBody {\n qrCodes?: NestedQrCode[]\n}\n\nexport interface CreateQrCodesByAssetIdResponseBody {\n asset: Asset\n assetId: string\n locatorKeys: QrCodeLocator[]\n qrCodes: ResponseQrCode[]\n}\n\nexport interface GetAssetPathParameters {\n assetId: string\n}\n\nexport interface GetAssetQueryStringParameters {\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n getUserMedias?: boolean\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n stylingTemplateId?: string | null\n version?: number | null\n width?: number | null\n}\n\nexport interface GetAssetResponseBody {\n asset: ResponseAsset\n assetId: string\n}\n\nexport interface GetAssetHistoryByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetAssetHistoryByAssetIdQueryStringParameters {\n ascending?: boolean | null\n at?: string | Date | number | null\n from?: string | Date | number | null\n lastKey?: string | null\n limit?: number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetHistoryByAssetIdResponseBody {\n assetId: string\n history: Asset[]\n lastKey?: string | null\n numberOfRecords: number\n}\n\nexport interface GetExternalNeighborScanCountByAssetIdPathParameters {\n assetId: string\n url: string\n}\n\nexport interface GetExternalNeighborScanCountByAssetIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetExternalNeighborScanCountByAssetIdResponseBody {\n scanCount: number\n}\n\nexport interface GetNeighborScanCountByAssetIdPathParameters {\n assetId: string\n neighborId: string\n}\n\nexport interface GetNeighborScanCountByAssetIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetNeighborScanCountByAssetIdResponseBody {\n scanCount: number\n}\n\nexport interface GetContactsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetContactsByAssetIdQueryStringParameters {\n ascending?: boolean | null\n contactName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n phone?: string | null\n queryCondition?: QueryConditions | null\n sortField?: ContactAssetSortingTypes | null\n}\n\nexport interface GetContactsByAssetIdResponseBody {\n assetContacts: AssetContact[]\n assetId: string\n contacts: Contact[]\n lastKey?: string | null\n numberOfContacts: number\n}\n\nexport interface GetNeighborsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetNeighborsByAssetIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetNeighborsByAssetIdResponseBody {\n lastKey?: string | null\n neighbors: Array<any>\n}\n\nexport interface GetScanExportByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetScanExportByAssetIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByAssetIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetUserMediasByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetUserMediasByAssetIdQueryStringParameters {\n ascending?: boolean | null\n category?: string | null\n fileType?: string | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: UserMediaSortingTypes | null\n}\n\nexport interface GetUserMediasByAssetIdResponseBody {\n assetId: string\n lastKey?: string | null\n userMedias: UserMedia[]\n}\n\nexport interface GetScanLocationDataByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetScanLocationDataByAssetIdQueryStringParameters {\n displayMostRecentPerAsset?: boolean\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanLocationDataByAssetIdResponseBody {\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n}\n\nexport interface GetQrCodesByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetQrCodesByAssetIdQueryStringParameters {\n ascending?: boolean | null\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n includeQrCodeLinks?: boolean\n lastKey?: string | null\n lightColor?: string | null\n limit?: number | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n sortField?: QrCodeSortingTypes | null\n stylingTemplateId?: string | null\n version?: number | null\n width?: number | null\n}\n\nexport interface GetQrCodesByAssetIdResponseBody {\n assetId: string\n lastKey?: string | null\n numberOfQrCodes: number\n qrCodes: ResponseQrCode[]\n}\n\nexport interface UnlinkContactFromAssetPathParameters {\n assetId: string\n contactId: string\n}\n\nexport interface GetScansByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetScansByAssetIdQueryStringParameters {\n ascending?: boolean\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetScansByAssetIdResponseBody {\n assetId: string\n lastKey?: string | null\n numberOfScans: number\n scans: Scan[]\n}\n\nexport interface CheckAccountAccessPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface CheckAccountAccessResponseBody {\n userRole: string\n}\n\nexport interface CreateAssetTypeByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateAssetTypeByAccountIdRequestBody {\n category?: string | null\n childItems?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceProperties?: NestedKeyValueObject | null\n intent?: string | null\n name: string\n staticProperties?: NestedKeyValueObject | null\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface CreateAssetTypeByAccountIdResponseBody {\n accountId: string\n assetType: AssetType\n}\n\nexport interface DeleteNeighborsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface DeleteNeighborsByAssetIdRequestBody {\n neighbors: Array<any>\n}\n\nexport interface CreateApiKeyByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateApiKeyByAccountIdRequestBody {\n description?: string | null\n name?: string | null\n}\n\nexport interface CreateApiKeyByAccountIdResponseBody {\n apiKeyId: string\n description?: string | null\n key: string\n name: string\n secret: string\n status: string\n}\n\nexport interface CheckUrlSafetyByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CheckUrlSafetyByAccountIdRequestBody {\n ignoreBlackList?: boolean\n qrCodeId?: string | null\n urls: Array<any>\n}\n\nexport interface CheckUrlSafetyByAccountIdResponseBody {\n isSafe: boolean\n urlSafeties: URLSafety[]\n}\n\nexport interface CreateInvitationByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateInvitationByAccountIdRequestBody extends AccountInvitationRequestBody {\n email: string\n firstName: string\n lastName: string\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface CreateInvitationByAccountIdResponseBody {\n accountInvitation: AccountInvitation\n emailInvitation: EmailInvitation\n}\n\nexport interface UpdateAssetPathParameters {\n assetId: string\n}\n\nexport interface UpdateAssetRequestBody {\n assetTypeId?: string | null\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n mediaIds?: Array<any> | null\n name?: string | null\n parentAssetId?: string | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface UpdateAssetResponseBody {\n asset: Asset\n assetId: string\n assetType?: AssetType | null\n location?: Location | null\n}\n\nexport interface CreateInvitationsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateInvitationsByAccountIdRequestBody {\n users: AccountInvitationRequestBody[]\n}\n\nexport interface CreateInvitationsByAccountIdResponseBody {\n accountInvitations: AccountInvitation[]\n emailInvitations: EmailInvitation[]\n}\n\nexport interface CreatePrintPageTemplateByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreatePrintPageTemplateByAccountIdRequestBody {\n created?: string | Date | number | null\n format?: PrintFormat | null\n horizontalMargin: number\n horizontalPadding: number\n isDeleted?: boolean | null\n modified?: string | Date | number | null\n name: string\n numberOfColumns: number\n numberOfRows: number\n orientation?: PrintOrientation | null\n pageSize: Array<any>\n printMode?: PrintMode | null\n printTemplate?: PrintTemplate | null\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit?: PrintUnit\n verticalMargin: number\n verticalPadding: number\n}\n\nexport interface CreatePrintPageTemplateByAccountIdResponseBody {\n printPageTemplate: PrintPageTemplate\n}\n\nexport interface CreateLocationByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateLocationByAccountIdRequestBody {\n address?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n name: string\n state?: string | null\n}\n\nexport interface CreateLocationByAccountIdResponseBody {\n accountId: string\n location: Location\n}\n\nexport interface LinkContactToAssetPathParameters {\n assetId: string\n contactId: string\n}\n\nexport interface LinkContactToAssetRequestBody {\n type?: string | null\n}\n\nexport interface LinkContactToAssetResponseBody {\n assetContact: AssetContact\n projectContact: ProjectContact\n}\n\nexport interface CreateQrCodeLogoByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateQrCodeLogoByAccountIdRequestBody {\n logoContentType: string\n}\n\nexport interface CreateQrCodeLogoByAccountIdResponseBody {\n presignedUrl: string\n qrCodeLogo: QrCodeLogo\n}\n\nexport interface CreateImageUploadPresignedPathParameters {\n accountId: string\n}\n\nexport interface CreateImageUploadPresignedRequestBody {\n imageContentType: string\n}\n\nexport interface CreateImageUploadPresignedResponseBody {\n image: S3Image\n presignedUrl: string\n}\n\nexport interface CreateProjectByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateProjectByAccountIdRequestBody {\n companyName?: string | null\n customDomain?: string | null\n description?: string | null\n micrositeCustomDomain?: string | null\n name: string\n workflowCustomDomain?: string | null\n}\n\nexport interface CreateProjectByAccountIdResponseBody {\n accountId: string\n project: Project\n}\n\nexport interface CreateQueryableCustomAttributeByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateQueryableCustomAttributeByAccountIdRequestBody {\n customAttributeName: string\n fieldType: FieldType\n}\n\nexport interface CreateQueryableCustomAttributeByAccountIdResponseBody {\n customAttribute: CustomAttribute\n}\n\nexport interface CreateUserMediaMultipartPresignedUrlByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateUserMediaMultipartPresignedUrlByAccountIdRequestBody {\n assetId?: string | null\n category?: string | null\n fileType: UserMediaFileTypes\n name?: string | null\n parts: number\n projectId?: string | null\n scanId?: string | null\n subFolder?: string | null\n}\n\nexport interface CreateUserMediaMultipartPresignedUrlByAccountIdResponseBody {\n presignedUrls: Array<any>\n uploadId: string\n userMedia: UserMedia\n}\n\nexport interface CreateAppByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateAppByAccountIdRequestBody {\n app: RequestApp\n}\n\nexport interface CreateAppByAccountIdResponseBody {\n app: App\n}\n\nexport interface CreateQrCodeStylingTemplateByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateQrCodeStylingTemplateByAccountIdRequestBody {\n imageOptions?: QrCodeImageOptions\n name: string\n projectId?: string | null\n}\n\nexport interface CreateQrCodeStylingTemplateByAccountIdResponseBody {\n accountId: string\n qrCodeStylingTemplate: QrCodeStylingTemplate\n}\n\nexport interface CreateTicketByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateTicketByAccountIdRequestBody {\n category?: string\n impact?: string\n message: string\n subject?: string\n}\n\nexport interface DeleteContactsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface DeleteContactsByAccountIdQueryStringParameters {\n cellPhone?: string | null\n emailAddress?: string | null\n}\n\nexport interface DeleteContactsByAccountIdResponseBody {\n accountId: string\n contacts: Contact[]\n}\n\nexport interface GetAccountPathParameters {\n accountId: string\n}\n\nexport interface GetAccountResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface GetAccountDomainPathParameters {\n accountId: string\n customDomain: string\n}\n\nexport interface GetAccountDomainResponseBody {\n accountDomain: AccountDomain\n}\n\nexport interface CreatePrintStickerTemplateByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreatePrintStickerTemplateByAccountIdRequestBody {\n bleed?: boolean | null\n name: string\n previewImage: string\n serializedFabric: NestedKeyValueObject\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit?: PrintUnit\n}\n\nexport interface CreatePrintStickerTemplateByAccountIdResponseBody {\n printStickerTemplate: PrintStickerTemplate\n}\n\nexport interface CreateUserMediaPresignedUrlByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateUserMediaPresignedUrlByAccountIdRequestBody {\n allowExpiry?: boolean\n assetId?: string | null\n category?: string | null\n fileType: UserMediaFileTypes\n name?: string | null\n projectId?: string | null\n scanId?: string | null\n subFolder?: string | null\n}\n\nexport interface CreateUserMediaPresignedUrlByAccountIdResponseBody {\n presignedUrl: string\n userMedia: UserMedia\n}\n\nexport interface DeleteUserByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface GetAdvancedAssetReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAdvancedAssetReportByAccountIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedAssetReportByAccountIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAdvancedScanReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAdvancedScanReportByAccountIdQueryStringParameters {\n displayMostRecentPerAsset?: boolean\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAdvancedScanReportByAccountIdResponseBody {\n dynamicQRCodesTotal: number\n lastScan?: LastScan | null\n projectsTotal: number\n scansByDevice: NestedKeyValueObject\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n scansTotal: number\n staticQRCodesTotal: number\n}\n\nexport interface GetAdvancedContactReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAdvancedContactReportByAccountIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedContactReportByAccountIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAllAppsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAllAppsByAccountIdQueryStringParameters {\n appName?: string | null\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAllAppsByAccountIdResponseBody {\n apps: App[]\n}\n\nexport interface GetAssetGraphsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetGraphsByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n projectId?: string | null\n}\n\nexport interface GetAssetGraphsByAccountIdResponseBody {\n assetGraphs: AssetGraph[]\n lastKey?: string | null\n}\n\nexport interface GetApiKeysByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetApiKeysByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetApiKeysByAccountIdResponseBody {\n accountId: string\n apiKeys: ApiKeyCredentials[]\n lastKey?: string | null\n numberOfApiKeys: number\n}\n\nexport interface GetAssetExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetExportByAccountIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetAssetsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByAccountIdResponseBody {\n accountId: string\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface GetBasicAssetReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetBasicAssetReportByAccountIdResponseBody {\n assetsCount: number\n}\n\nexport interface GetBasicContactReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetBasicContactReportByAccountIdResponseBody {\n contactsCount: number\n}\n\nexport interface GetAssetTypesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetTypesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n locationId?: string | null\n name?: string | null\n sortField?: AssetTypeSortingTypes | null\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface GetAssetTypesByAccountIdResponseBody {\n accountId: string\n assetTypes: AssetType[]\n assetTypesByLocation?: AssetTypeByLocation[] | null\n lastKey?: string | null\n numberOfAssetTypes: number\n}\n\nexport interface GetBatchesByAccountIdPathParameters {\n projectId: string\n}\n\nexport interface GetBatchesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetBatchesByAccountIdResponseBody {\n batch: Batch\n lastKey?: string | null\n}\n\nexport interface GetConsentByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetConsentByAccountIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetConsentByAccountIdResponseBody {\n accountId: string\n consent: ContactConsent[]\n lastKey?: string | null\n}\n\nexport interface GetContactsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetContactsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n phone?: string | null\n queryCondition?: QueryConditions | null\n sortField?: ContactSortingTypes | null\n}\n\nexport interface GetContactsByAccountIdResponseBody {\n accountId: string\n contacts: Contact[]\n lastKey?: string | null\n numberOfContacts: number\n}\n\nexport interface GetInstalledAppsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetInstalledAppsByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetInstalledAppsByAccountIdResponseBody {\n installedApps: AppBasicDetails[]\n}\n\nexport interface GetJobsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetJobsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetJobsByAccountIdResponseBody {\n jobs: Job[]\n lastKey?: string | null\n}\n\nexport interface GetDomainsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetDomainsByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n type?: AccountDomainTypes | null\n}\n\nexport interface GetDomainsByAccountIdResponseBody {\n accountDomains: AccountDomain[]\n lastKey?: string | null\n}\n\nexport interface GetContactExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetContactExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetContactExportByAccountIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetMostScannedAssetsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetMostScannedAssetsByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n limit?: number | null\n to?: string | Date | number | null\n}\n\nexport interface GetMostScannedAssetsByAccountIdResponseBody {\n mostScannedAssets: Array<any>\n}\n\nexport interface GetPluginsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPluginsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPlugins: number\n plugins: ResponseAccountPlugin[]\n}\n\nexport interface GetPrintJobsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPrintJobsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n printJobName?: string | null\n}\n\nexport interface GetPrintJobsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPrintJobs: number\n printJobs: PrintJob[]\n}\n\nexport interface GetPricePlanByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPricePlanByAccountIdResponseBody {\n pricePlan: PricePlan\n pricePlanPeriod: PricePlanPeriod\n}\n\nexport interface GetPrintPageTemplatesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPrintPageTemplatesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n}\n\nexport interface GetPrintPageTemplatesByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPrintPageTemplates: number\n printPageTemplates: PrintPageTemplate[]\n}\n\nexport interface GetProjectExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetProjectExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetProjectExportByAccountIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetPrintStickerTemplatesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPrintStickerTemplatesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n}\n\nexport interface GetPrintStickerTemplatesByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPrintStickerTemplates: number\n printStickerTemplates: PrintStickerTemplate[]\n}\n\nexport interface GetQrCodeStylingTemplatesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrCodeStylingTemplatesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n stylingTemplateName?: string | null\n}\n\nexport interface GetQrCodeStylingTemplatesByAccountIdResponseBody {\n accountId: string\n numberOfQrCodeStylingTemplates: number\n qrCodeStylingTemplates: QrCodeStylingTemplate[]\n}\n\nexport interface GetQrCodeLogosByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrCodeLogosByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetQrCodeLogosByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfQrCodeLogos: number\n qrCodeLogos: QrCodeLogo[]\n}\n\nexport interface GetProjectsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetProjectsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: ProjectSortingTypes | null\n}\n\nexport interface GetProjectsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfProjects: number\n projects: Project[]\n}\n\nexport interface GetQrCodesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrCodesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n lastKey?: string | null\n limit?: number | null\n sortField?: QrCodeSortingTypes | null\n willGetLogoIds?: boolean | null\n}\n\nexport interface GetQrCodesByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfQrCodes: number\n qrCodes: QrCode[]\n}\n\nexport interface GetAssetsScanCountByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetsScanCountByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetsScanCountByAccountIdRequestBody {\n assetIds: Array<any>\n}\n\nexport interface GetAssetsScanCountByAccountIdResponseBody {\n scanCount: NestedKeyValueObject\n}\n\nexport interface GetUsersByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetUsersByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n}\n\nexport interface GetUsersByAccountIdResponseBody {\n accountId: string\n invitations: ResponseBodyUser[]\n lastKey?: string | null\n numberOfInvitations: number\n numberOfUsers: number\n users: ResponseBodyUser[]\n}\n\nexport interface GetScanTimelineByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanTimelineByAccountIdQueryStringParameters {\n from: string | Date | number\n to?: string | Date | number | null\n type: ScanTimelineOptions\n}\n\nexport interface GetScanTimelineByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScanDayOfWeekByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanDayOfWeekByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanDayOfWeekByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetUserMediasByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetUserMediasByAccountIdQueryStringParameters {\n ascending?: boolean | null\n category?: string | null\n fileType?: string | null\n lastKey?: string | null\n limit?: number | null\n mediaIds?: string | null\n name?: string | null\n sortField?: UserMediaSortingTypes | null\n}\n\nexport interface GetUserMediasByAccountIdResponseBody {\n lastKey?: string | null\n userMedias: UserMedia[]\n}\n\nexport interface GetLocationsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetLocationsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: LocationSortingTypes | null\n state?: string | null\n}\n\nexport interface GetLocationsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n locations: Location[]\n numberOfLocations: number\n}\n\nexport interface GetScanExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n projectId?: string | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByAccountIdResponseBody {\n fileName?: string | null\n job: Job\n}\n\nexport interface GetScansByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScansByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactId?: string | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetScansByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfScans: number\n scans: Scan[]\n}\n\nexport interface GetUserByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface GetUserByAccountIdResponseBody extends ResponseBodyUser {\n created: string | Date | number\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId?: string | null\n lastName: string\n middleName: string\n userId?: string | null\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface GetUsersRolesByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface GetUsersRolesByAccountIdResponseBody {\n permissions: Permission\n userRoles: UserRole[]\n}\n\nexport interface GetQueryableCustomAttributesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQueryableCustomAttributesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetQueryableCustomAttributesByAccountIdResponseBody {\n customAttributes: CustomAttribute[]\n}\n\nexport interface InstallAppToAccountPathParameters {\n accountId: string\n appId: string\n}\n\nexport interface InstallAppToAccountResponseBody {\n appAccount: AppAccount\n}\n\nexport interface StripeClockPathParameters {\n accountId: string\n}\n\nexport interface StripeClockRequestBody {\n customDate?: string | null\n shortcuts?: string | null\n}\n\nexport interface StripeClockResponseBody {\n message: string\n}\n\nexport interface UpdatePricePlanByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface UpdatePricePlanByAccountIdRequestBody {\n paymentPeriod: PricePlanPaymentPeriod\n pricePlanName: PricePlanName\n}\n\nexport interface UpdatePricePlanByAccountIdResponseBody {\n pricePlan: PricePlan\n pricePlanPeriod: PricePlanPeriod\n}\n\nexport interface UpdatePricePlanPathParameters {\n accountId: string\n}\n\nexport interface UpdatePricePlanRequestBody {\n planName: string\n}\n\nexport interface UpdatePricePlanResponseBody {\n}\n\nexport interface SendCampaignInformationByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface SendCampaignInformationByAccountIdRequestBody {\n campaignInfo: SmsCampaignRequest\n}\n\nexport interface SendCampaignInformationByAccountIdResponseBody {\n account: Account\n accountSmsCampaign: AccountSmsCampaign\n}\n\nexport interface UpdateUserByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface UpdateUserByAccountIdRequestBody {\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface UpdateUserByAccountIdResponseBody {\n accountUser: AccountUser\n}\n\nexport interface UpdateAccountPathParameters {\n accountId: string\n}\n\nexport interface UpdateAccountRequestBody {\n companyName?: string | null\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n}\n\nexport interface UpdateAccountResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface RetrieveCampaignStatusByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface RetrieveCampaignStatusByAccountIdResponseBody {\n accountSmsCampaign: AccountSmsCampaign\n}\n\nexport interface UpdateUsersRolesByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface UpdateUsersRolesByAccountIdRequestBody {\n userRoleIds: Array<any>\n}\n\nexport interface UpdateUsersRolesByAccountIdResponseBody {\n accountUser: AccountUser\n}\n\nexport interface UploadQrCodeLogoByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface UploadQrCodeLogoByAccountIdRequestBody {\n logo: string\n}\n\nexport interface UploadQrCodeLogoByAccountIdResponseBody {\n qrCodeLogoId: string\n qrCodeLogoUrl: string\n}\n\nexport interface GetAssetsByBatchIdPathParameters {\n batchId: string\n}\n\nexport interface GetAssetsByBatchIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByBatchIdResponseBody {\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface ChangeSubscriptionPreviewPathParameters {\n accountId: string\n}\n\nexport interface ChangeSubscriptionPreviewQueryStringParameters {\n planName: string\n}\n\nexport interface ChangeSubscriptionPreviewResponseBody {\n preview: NestedKeyValueObject\n}\n\nexport interface GetScanTimeOfDayByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanTimeOfDayByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanTimeOfDayByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface CancelDowngradeRequestPathParameters {\n accountId: string\n}\n\nexport interface CancelDowngradeRequestResponseBody {\n}\n\nexport interface GetAllAccountsQueryStringParameters {\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAllAccountsResponseBody {\n accounts: Account[]\n lastKey?: string | null\n}\n\nexport interface GetCurrentPeriodPathParameters {\n accountId: string\n}\n\nexport interface GetCurrentPeriodResponseBody {\n endDate: string\n startDate: string\n}\n\nexport interface CreateSetupIntentPathParameters {\n accountId: string\n}\n\nexport interface CreateSetupIntentRequestBody {\n appId?: string | null\n planName?: string | null\n updateBilling?: boolean\n}\n\nexport interface CreateSetupIntentResponseBody {\n setupIntent: string\n}\n\nexport interface CancelSubscriptionPathParameters {\n accountId: string\n}\n\nexport interface CancelSubscriptionRequestBody {\n}\n\nexport interface CancelSubscriptionResponseBody {\n}\n\nexport interface GetInvoicesPathParameters {\n accountId: string\n}\n\nexport interface GetInvoicesQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetInvoicesResponseBody {\n invoices: Invoice[]\n lastKey?: string | null\n}\n\nexport interface GetBillingDetailsPathParameters {\n accountId: string\n}\n\nexport interface GetBillingDetailsResponseBody {\n billingDetails?: CreditCard | null\n}\n\nexport interface DowngradePlanPathParameters {\n accountId: string\n}\n\nexport interface DowngradePlanRequestBody {\n planName: string\n}\n\nexport interface DowngradePlanResponseBody {\n}\n\nexport interface UpgradePlanPathParameters {\n accountId: string\n}\n\nexport interface UpgradePlanRequestBody {\n planName: string\n}\n\nexport interface UpgradePlanResponseBody {\n}\n\nexport interface CreateConsentByContactIdPathParameters {\n contactId: string\n}\n\nexport interface CreateConsentByContactIdRequestBody {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n consentedAt: string | Date | number\n projectId?: string | null\n url?: string | null\n urls?: string[]\n}\n\nexport interface CreateConsentByContactIdResponseBody {\n consent: ContactConsent\n contactId: string\n}\n\nexport interface GetConsentByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetConsentByContactIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType?: ConsentType | null\n lastKey?: string | null\n limit?: number | null\n projectId?: string | null\n}\n\nexport interface GetConsentByContactIdResponseBody {\n consent: ContactConsent[]\n contactId: string\n lastKey?: string | null\n}\n\nexport interface GetAssetsByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetAssetsByContactIdQueryStringParameters {\n ascending?: boolean | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n type?: string | null\n}\n\nexport interface GetAssetsByContactIdResponseBody {\n assets: Asset[]\n contactId: string\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface GetContactExportByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetContactExportByContactIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetContactExportByContactIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetContactPathParameters {\n contactId: string\n}\n\nexport interface GetContactResponseBody {\n contact: Contact\n}\n\nexport interface UpdateContactPathParameters {\n contactId: string\n}\n\nexport interface UpdateContactRequestBody {\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n}\n\nexport interface UpdateContactResponseBody {\n contact: Contact\n contactId: string\n}\n\nexport interface DeleteContactPathParameters {\n contactId: string\n}\n\nexport interface DeleteContactResponseBody {\n contact: Contact\n}\n\nexport interface GetScanExportByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetScanExportByContactIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByContactIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetScanLocationDataByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetScanLocationDataByContactIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanLocationDataByContactIdResponseBody {\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n}\n\nexport interface DeleteConsentByContactIdPathParameters {\n contactId: string\n}\n\nexport interface DeleteConsentByContactIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n projectId?: string | null\n}\n\nexport interface DeleteConsentByContactIdResponseBody {\n consent: ContactConsent\n contactId: string\n}\n\nexport interface LinkContactToScanPathParameters {\n contactId: string\n scanId: string\n}\n\nexport interface LinkContactToScanRequestBody {\n type?: string | null\n}\n\nexport interface LinkContactToScanResponseBody extends ScanContact {\n assetId: string\n assetName: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n}\n\nexport interface RetryCustomDomainPathParameters {\n customDomain: string\n}\n\nexport interface RetryCustomDomainResponseBody {\n accountDomain: AccountDomain\n}\n\nexport interface GetScansByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetScansByContactIdResponseBody {\n scans: Scan[]\n}\n\nexport interface DeleteCustomDomainPathParameters {\n customDomain: string\n}\n\nexport interface DeleteAssetGraphPathParameters {\n assetGraphId: string\n}\n\nexport interface GetAssetGraphPathParameters {\n assetGraphId: string\n}\n\nexport interface GetAssetGraphResponseBody {\n assetGraph: ResponseAssetGraph\n}\n\nexport interface GetInvitationPathParameters {\n invitationId: string\n}\n\nexport interface GetInvitationResponseBody {\n accountInvitation: AccountInvitation\n}\n\nexport interface DeleteInvitationPathParameters {\n invitationId: string\n}\n\nexport interface DeleteInvitationResponseBody {\n accountInvitation: AccountInvitation\n emailInvitation?: EmailInvitation | null\n}\n\nexport interface CreateUserByInvitationIdPathParameters {\n invitationId: string\n}\n\nexport interface CreateUserByInvitationIdResponseBody {\n account: Account\n accountUser: AccountUser\n}\n\nexport interface DeleteJobPathParameters {\n jobId: string\n}\n\nexport interface DeleteJobResponseBody {\n job: Job\n}\n\nexport interface UpdateAssetGraphPathParameters {\n assetGraphId: string\n}\n\nexport interface UpdateAssetGraphRequestBody {\n direction?: string\n edges: Array<any>\n name: string\n nodes: Array<any>\n}\n\nexport interface UpdateAssetGraphResponseBody {\n assetGraph: AssetGraph\n}\n\nexport interface GetJobPathParameters {\n jobId: string\n}\n\nexport interface GetJobResponseBody {\n job: Job\n}\n\nexport interface InvokePrintJobByJobIdPathParameters {\n printJobId: string\n}\n\nexport interface InvokePrintJobByJobIdResponseBody {\n printJob: PrintJob\n}\n\nexport interface UpdateLocationPathParameters {\n locationId: string\n}\n\nexport interface UpdateLocationRequestBody {\n address?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n name?: string | null\n state?: string | null\n}\n\nexport interface UpdateLocationResponseBody {\n location: Location\n}\n\nexport interface DeleteLocationPathParameters {\n locationId: string\n}\n\nexport interface DeleteLocationQueryStringParameters {\n}\n\nexport interface DeleteLocationResponseBody {\n location: Location\n}\n\nexport interface BatchUpdateAssetLocationsPathParameters {\n locationId: string\n}\n\nexport interface BatchUpdateAssetLocationsRequestBody {\n assetIds: Array<any>\n}\n\nexport interface BatchUpdateAssetLocationsResponseBody {\n assets: Asset\n}\n\nexport interface GetQrCodeLogoByQrCodeLogoIdPathParameters {\n qrCodeLogoId: string\n}\n\nexport interface GetQrCodeLogoByQrCodeLogoIdResponseBody {\n qrCodeLogo: QrCodeLogo\n qrCodeLogoId: string\n}\n\nexport interface DeletePrintJobPathParameters {\n printJobId: string\n}\n\nexport interface DeletePrintJobResponseBody {\n printJob: PrintJob\n}\n\nexport interface GetAssetsByLocationPathParameters {\n locationId: string\n}\n\nexport interface GetAssetsByLocationQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByLocationResponseBody {\n assets: Asset[]\n lastKey?: string | null\n locationId: string\n numberOfAssets: number\n}\n\nexport interface SendSupportEmailRequestBody {\n body: string\n captchaToken: string\n from: string\n subject?: string\n to?: OpenscreenEmails\n}\n\nexport interface CreateLinkByQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface CreateLinkByQrCodeRequestBody {\n qrCodeLink?: string | null\n}\n\nexport interface CreateLinkByQrCodeResponseBody {\n qrCodeLink: QrCodeLink\n}\n\nexport interface DeleteLinkByQrCodePathParameters {\n link: string\n qrCodeId: string\n}\n\nexport interface GetPricePlansResponseBody {\n pricePlans: NestedKeyValueObject\n}\n\nexport interface DeleteQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface DeleteQrCodeResponseBody {\n qrCode: QrCode\n}\n\nexport interface GetQrCodeLinkPathParameters {\n qrCodeLink: string\n}\n\nexport interface GetQrCodeLinkResponseBody {\n qrCodeLink: QrCodeLink\n}\n\nexport interface GetQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface GetQrCodeQueryStringParameters {\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n getQrCodeLinks?: boolean\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n stylingTemplateId?: string | null\n version?: number | null\n width?: number | null\n}\n\nexport interface GetQrCodeResponseBody extends ResponseQrCode {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n created?: string | Date | number | null\n customDomain?: string | null\n dynamicRedirectType?: QrCodeDynamicRedirectType\n image: QrCodeImage\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKey: string\n locatorKeyType?: QrCodeLocatorKeyType\n modified?: string | Date | number | null\n name?: string | null\n projectId?: string | null\n qrCodeId: string\n qrCodeLinks?: Array<any> | null\n scanCount: number\n serializedLocatorKey?: string | null\n status?: QrCodeStatus\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface GetLinksByQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface GetLinksByQrCodeResponseBody {\n qrCodeLinks: Array<any>\n}\n\nexport interface CheckCustomLocatorKeyRangePathParameters {\n customDomain: string\n}\n\nexport interface CheckCustomLocatorKeyRangeQueryStringParameters {\n endingValue: number\n prefix: string\n startingValue: number\n}\n\nexport interface CheckCustomLocatorKeyRangeResponseBody {\n}\n\nexport interface ValidateFilePathParameters {\n fileId: string\n}\n\nexport interface ValidateFileResponseBody {\n errsObject: NestedKeyValueObject\n file: File\n}\n\nexport interface UpdateQrCodeLogoByQrCodeLogoIdPathParameters {\n qrCodeLogoId: string\n}\n\nexport interface UpdateQrCodeLogoByQrCodeLogoIdRequestBody {\n hidden?: boolean | null\n}\n\nexport interface UpdateQrCodeLogoByQrCodeLogoIdResponseBody {\n qrCodeLogo: QrCodeLogo\n qrCodeLogoId: string\n}\n\nexport interface GetFilePathParameters {\n fileId: string\n}\n\nexport interface GetFileResponseBody {\n file: File\n}\n\nexport interface UpdateQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface UpdateQrCodeRequestBody {\n customDomain?: string | null\n dynamicRedirectType?: QrCodeDynamicRedirectType | null\n imageOptions?: QrCodeImageOptions | null\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n isAskingForGPS?: boolean | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n}\n\nexport interface UpdateQrCodeResponseBody {\n qrCode: ResponseQrCode\n}\n\nexport interface CreateAssetBatchValidationJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetBatchValidationJobByProjectIdRequestBody {\n callbackUrl?: string | null\n fileId?: string | null\n trackFileId?: string | null\n trackJobId?: string | null\n}\n\nexport interface CreateAssetBatchValidationJobByProjectIdResponseBody {\n job: Job\n}\n\nexport interface CreateAssetGraphByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetGraphByProjectIdRequestBody {\n edges: NestedKeyValueObject\n name: string\n nodes: NestedKeyValueObject\n}\n\nexport interface CreateAssetGraphByProjectIdResponseBody {\n assetGraph: AssetGraph\n}\n\nexport interface CreateContactByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateContactByProjectIdRequestBody {\n asset?: NestedAsset | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface CreateContactByProjectIdResponseBody {\n asset?: Asset | null\n assetContact?: AssetContact | null\n contact: Contact\n projectContact: ProjectContact\n projectId: string\n qrCodes?: QrCode[] | null\n}\n\nexport interface CreateAssetCreationJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetCreationJobByProjectIdRequestBody {\n assets?: AssetFieldsObject[] | null\n callbackUrl?: string | null\n commonProperties?: AssetFieldsObject | null\n fileId?: string | null\n}\n\nexport interface CreateAssetCreationJobByProjectIdResponseBody {\n batch: Batch\n job: Job\n}\n\nexport interface CreateAssetsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetsByProjectIdRequestBody {\n assets: AssetFieldsObject[]\n commonProperties?: AssetFieldsObject | null\n}\n\nexport interface CreateAssetsByProjectIdResponseBody {\n assets: ResponseAsset[]\n numberOfAssets: number\n projectId: string\n}\n\nexport interface CreateContactsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateContactsByProjectIdRequestBody {\n contacts: NestedContact[]\n}\n\nexport interface CreateContactsByProjectIdResponseBody {\n contacts: Array<any>\n numberOfContacts: number\n projectId: string\n}\n\nexport interface CreateTemplatedPrintPreviewByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateTemplatedPrintPreviewByProjectIdRequestBody {\n assetIds?: Array<any> | null\n batchId?: string | null\n imageOptions?: QrCodeImageOptions | null\n printOptions: PrintOptions\n serializedFabric: NestedKeyValueObject\n stylingTemplateId?: string | null\n}\n\nexport interface CreateTemplatedPrintPreviewByProjectIdResponseBody {\n outputUrl: string\n}\n\nexport interface CreateSelfQueuePrintJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateSelfQueuePrintJobByProjectIdRequestBody {\n batchId?: string | null\n batchName?: string | null\n callbackUrl?: string | null\n imageOptions?: QrCodeImageOptions | null\n pageSize?: number | null\n printOptions: PrintOptions\n serializedFabric?: NestedKeyValueObject | null\n sortField?: QrCodeSortingTypes | null\n stylingTemplateId?: string | null\n}\n\nexport interface CreateSelfQueuePrintJobByProjectIdResponseBody {\n job: Job\n}\n\nexport interface DeleteContactsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface DeleteContactsByProjectIdQueryStringParameters {\n cellPhone?: string | null\n emailAddress?: string | null\n}\n\nexport interface DeleteContactsByProjectIdResponseBody {\n contacts: Contact[]\n projectId: string\n}\n\nexport interface CreateAssetByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetByProjectIdRequestBody extends NestedAsset {\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name: string\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n useCustomDomain?: boolean | null\n willCreateSession?: boolean | null\n}\n\nexport interface CreateAssetByProjectIdResponseBody {\n asset: ResponseAsset\n projectId: string\n}\n\nexport interface CreateQrCodeByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateQrCodeByProjectIdRequestBody {\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n}\n\nexport interface CreateQrCodeByProjectIdResponseBody {\n locatorKey: string\n projectId: string\n qrCode: QrCode\n qrCodeId: string\n}\n\nexport interface DeleteSmsTemplatePathParameters {\n projectId: string\n smsTemplateName: string\n}\n\nexport interface DeleteSmsTemplateResponseBody {\n body?: string | null\n projectId: string\n responseUrl?: string | null\n smsTemplateName?: string | null\n statusUrl?: string | null\n}\n\nexport interface DeleteProjectPathParameters {\n projectId: string\n}\n\nexport interface DeleteProjectResponseBody {\n project: Project\n}\n\nexport interface CreateAssetCreationPresignedUrlByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetCreationPresignedUrlByProjectIdRequestBody {\n fileType?: AssetCreationFileTypes\n}\n\nexport interface CreateAssetCreationPresignedUrlByProjectIdResponseBody {\n file: File\n presignedUrl: string\n}\n\nexport interface CreateTemplatedPrintJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateTemplatedPrintJobByProjectIdRequestBody {\n assetIds?: Array<any> | null\n callbackUrl?: string | null\n imageOptions?: QrCodeImageOptions | null\n name?: string | null\n printOptions: PrintOptions\n serializedFabric: NestedKeyValueObject\n stylingTemplateId?: string | null\n}\n\nexport interface CreateTemplatedPrintJobByProjectIdResponseBody {\n fileExpiry: string | Date | number\n job: PrintJob\n outputUrl: string\n}\n\nexport interface GetAdvancedContactReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAdvancedContactReportByProjectIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedContactReportByProjectIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAdvancedAssetReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAdvancedAssetReportByProjectIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedAssetReportByProjectIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAdvancedScanReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAdvancedScanReportByProjectIdQueryStringParameters {\n displayMostRecentPerAsset?: boolean\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAdvancedScanReportByProjectIdResponseBody {\n dynamicQRCodesTotal: number\n lastScan?: LastScan | null\n scansByDevice: NestedKeyValueObject\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n scansTotal: number\n staticQRCodesTotal: number\n}\n\nexport interface GetAssetsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAssetsByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeQrCodeLinks?: boolean\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByProjectIdResponseBody {\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n projectId: string\n}\n\nexport interface GetBasicContactReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetBasicContactReportByProjectIdResponseBody {\n contactsCount: number\n}\n\nexport interface GetBasicAssetReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetBasicAssetReportByProjectIdResponseBody {\n assetsCount: number\n}\n\nexport interface GetConsentByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetConsentByProjectIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetConsentByProjectIdResponseBody {\n consent: ContactConsent[]\n lastKey?: string | null\n projectId: string\n}\n\nexport interface GetAssetExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAssetExportByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetExportByProjectIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface CreateSmsTemplateByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateSmsTemplateByProjectIdRequestBody {\n body?: string | null\n responseUrl?: string | null\n smsTemplateName: string\n statusUrl?: string | null\n}\n\nexport interface CreateSmsTemplateByProjectIdResponseBody {\n smsTemplate: SmsTemplate\n}\n\nexport interface GetContactsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetContactsByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n phone?: string | null\n queryCondition?: QueryConditions | null\n sortField?: ContactSortingTypes | null\n}\n\nexport interface GetContactsByProjectIdResponseBody {\n contacts: Contact[]\n lastKey?: string | null\n numberOfContacts: number\n projectId: string\n}\n\nexport interface GetProjectByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetProjectByProjectIdResponseBody {\n project: Project\n}\n\nexport interface GetContactExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetContactExportByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetContactExportByProjectIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetScanExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanExportByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByProjectIdResponseBody {\n fileName?: string | null\n job: Job\n}\n\nexport interface GetScanDayOfWeekByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanDayOfWeekByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanDayOfWeekByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetQrCodesByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetQrCodesByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n lastKey?: string | null\n limit?: number | null\n sortField?: QrCodeSortingTypes | null\n willGetLogoIds?: boolean | null\n}\n\nexport interface GetQrCodesByProjectIdResponseBody {\n lastKey?: string | null\n numberOfQrCodes: number\n projectId: string\n qrCodes: QrCode[]\n}\n\nexport interface GetScanTimeOfDayByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanTimeOfDayByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanTimeOfDayByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetAssetGraphsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAssetGraphsByProjectIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAssetGraphsByProjectIdResponseBody {\n assetGraphs: AssetGraph[]\n lastKey?: string | null\n}\n\nexport interface GetBatchesByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetBatchesByProjectIdQueryStringParameters extends NestedAsset {\n ascending?: boolean | null\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n lastKey?: string | null\n limit?: number | null\n locationId?: string | null\n name: string\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface GetBatchesByProjectIdResponseBody {\n asset: ResponseAsset\n projectId: string\n}\n\nexport interface GetMostScannedAssetsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetMostScannedAssetsByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n limit?: number | null\n to?: string | Date | number | null\n}\n\nexport interface GetMostScannedAssetsByProjectIdResponseBody {\n mostScannedAssets: Array<any>\n}\n\nexport interface GetUserMediasByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetUserMediasByProjectIdQueryStringParameters {\n ascending?: boolean | null\n category?: string | null\n fileType?: string | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: UserMediaSortingTypes | null\n}\n\nexport interface GetUserMediasByProjectIdResponseBody {\n lastKey?: string | null\n projectId: string\n userMedias: UserMedia[]\n}\n\nexport interface UpdateProjectByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface UpdateProjectByProjectIdRequestBody {\n companyName?: string | null\n customDomain?: string | null\n description?: string | null\n name?: string | null\n status?: ProjectStatus | null\n}\n\nexport interface UpdateProjectByProjectIdResponseBody {\n project: Project\n}\n\nexport interface GetScansByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScansByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactId?: string | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetScansByProjectIdResponseBody {\n lastKey?: string | null\n numberOfScans: number\n projectId: string\n scans: Scan[]\n}\n\nexport interface GetScanTimelineByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanTimelineByProjectIdQueryStringParameters {\n from: string | Date | number\n to?: string | Date | number | null\n type: ScanTimelineOptions\n}\n\nexport interface GetScanTimelineByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface CompleteUserMediaMultipartUploadPathParameters {\n mediaId: string\n}\n\nexport interface CompleteUserMediaMultipartUploadRequestBody {\n key: string\n parts: MultipartUploadPart[]\n uploadId: string\n}\n\nexport interface CompleteUserMediaMultipartUploadResponseBody {\n userMedia: UserMedia\n}\n\nexport interface LinkMediaToAssetPathParameters {\n assetId: string\n mediaId: string\n}\n\nexport interface LinkMediaToAssetResponseBody {\n userMedia: UserMedia\n}\n\nexport interface GetUserMediaPathParameters {\n mediaId: string\n}\n\nexport interface GetUserMediaResponseBody {\n userMedia: UserMedia\n}\n\nexport interface LinkMediaToScanPathParameters {\n mediaId: string\n scanId: string\n}\n\nexport interface LinkMediaToScanResponseBody {\n userMedia: UserMedia\n}\n\nexport interface LinkMediaToProjectPathParameters {\n mediaId: string\n projectId: string\n}\n\nexport interface LinkMediaToProjectResponseBody {\n userMedia: UserMedia\n}\n\nexport interface UnlinkMediaToProjectPathParameters {\n mediaId: string\n projectId: string\n}\n\nexport interface UnlinkMediaToProjectResponseBody {\n}\n\nexport interface UnlinkMediaToScanPathParameters {\n mediaId: string\n scanId: string\n}\n\nexport interface UnlinkMediaToScanResponseBody {\n userMedia: UserMedia\n}\n\nexport interface UpdateUserMediaPathParameters {\n mediaId: string\n}\n\nexport interface UpdateUserMediaRequestBody {\n category?: string | null\n description?: string | null\n mediaType: string\n title?: string | null\n}\n\nexport interface UpdateUserMediaResponseBody {\n userMedia: UserMedia\n}\n\nexport interface UnlinkMediaToAssetPathParameters {\n assetId: string\n mediaId: string\n}\n\nexport interface UnlinkMediaToAssetResponseBody {\n}\n\nexport interface CreateAccountByUserIdPathParameters {\n userId: string\n}\n\nexport interface CreateAccountByUserIdRequestBody {\n companyName?: string | null\n}\n\nexport interface CreateAccountByUserIdResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface GetAccountsByUserIdPathParameters {\n userId: string\n}\n\nexport interface GetAccountsByUserIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAccountsByUserIdResponseBody {\n accounts: AccountResponse[]\n lastKey?: string | null\n numberOfAccounts: number\n userId: string\n}\n\nexport interface GetUserPathParameters {\n userId: string\n}\n\nexport interface GetUserResponseBody extends User {\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface GetInvitationsByUserIdPathParameters {\n userId: string\n}\n\nexport interface GetInvitationsByUserIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetInvitationsByUserIdResponseBody {\n accountInvitations: AccountInvitation[]\n lastKey?: string | null\n numberOfInvitations: number\n userId: string\n}\n\nexport interface GetUserSettingsPathParameters {\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface GetUserSettingsResponseBody extends UserSettings {\n created?: string | Date | number | null\n lastSelectedAccountId?: string | null\n modified?: string | Date | number | null\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface GetErrorsByUserIdPathParameters {\n userId: string\n}\n\nexport interface GetErrorsByUserIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetErrorsByUserIdResponseBody {\n errors: Response[]\n lastKey?: string | null\n numberOfErrors: number\n userId: string\n}\n\nexport interface DeletePrintStickerTemplatePathParameters {\n printStickerTemplateId: string\n}\n\nexport interface GetPrintStickerTemplatePathParameters {\n printStickerTemplateId: string\n}\n\nexport interface GetPrintStickerTemplateResponseBody {\n printStickerTemplate: PrintStickerTemplate\n}\n\nexport interface SetUserSettingsPathParameters {\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface SetUserSettingsRequestBody {\n lastSelectedAccountId: string\n}\n\nexport interface SetUserSettingsResponseBody extends UserSettings {\n created?: string | Date | number | null\n lastSelectedAccountId?: string | null\n modified?: string | Date | number | null\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface UpdateUserPathParameters {\n userId: string\n}\n\nexport interface UpdateUserRequestBody {\n firstName?: string | null\n lastName?: string | null\n middleName?: string | null\n}\n\nexport interface UpdateUserResponseBody extends User {\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface DeleteStylingTemplateByStylingTemplateIdPathParameters {\n stylingTemplateId: string\n}\n\nexport interface DeleteStylingTemplateByStylingTemplateIdResponseBody {\n qrCodeStylingTemplate: QrCodeStylingTemplate\n stylingTemplateId: string\n}\n\nexport interface UpdatePrintPageTemplatePathParameters {\n printPageTemplateId: string\n}\n\nexport interface UpdatePrintPageTemplateRequestBody {\n created?: string | Date | number | null\n format?: PrintFormat | null\n horizontalMargin: number\n horizontalPadding: number\n isDeleted?: boolean | null\n modified?: string | Date | number | null\n name: string\n numberOfColumns: number\n numberOfRows: number\n orientation?: PrintOrientation | null\n pageSize: Array<any>\n printMode?: PrintMode | null\n printTemplate?: PrintTemplate | null\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit: PrintUnit\n verticalMargin: number\n verticalPadding: number\n}\n\nexport interface UpdatePrintPageTemplateResponseBody {\n printPageTemplate: PrintPageTemplate\n}\n\nexport interface UpdateStylingTemplateByStylingTemplateIdPathParameters {\n stylingTemplateId: string\n}\n\nexport interface UpdateStylingTemplateByStylingTemplateIdRequestBody {\n imageOptions?: QrCodeImageOptionsNoDefaults\n name?: string | null\n qrCodeLogoId?: string | null\n}\n\nexport interface UpdateStylingTemplateByStylingTemplateIdResponseBody {\n qrCodeStylingTemplate: QrCodeStylingTemplate\n stylingTemplateId: string\n}\n\nexport interface GetPrintPageTemplatePathParameters {\n printPageTemplateId: string\n}\n\nexport interface GetPrintPageTemplateResponseBody {\n printPageTemplate: PrintPageTemplate\n}\n\nexport interface GetStylingTemplateByStylingTemplateIdPathParameters {\n stylingTemplateId: string\n}\n\nexport interface GetStylingTemplateByStylingTemplateIdResponseBody {\n qrCodeStylingTemplate: QrCodeStylingTemplate\n stylingTemplateId: string\n}\n\nexport interface GetScanPathParameters {\n scanId: string\n}\n\nexport interface GetScanQueryStringParameters {\n getUserMedias?: boolean\n}\n\nexport interface GetScanResponseBody {\n asset: Asset\n assetType?: AssetType | null\n contacts: Contact[]\n qrCode: QrCode\n scan: Scan\n}\n\nexport interface SaveGeolocationByScanIdPathParameters {\n scanId: string\n}\n\nexport interface SaveGeolocationByScanIdRequestBody {\n latitude?: string | null\n longitude?: string | null\n}\n\nexport interface CreateContactByScanIdPathParameters {\n scanId: string\n}\n\nexport interface CreateContactByScanIdRequestBody {\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface CreateContactByScanIdResponseBody {\n asset: Asset\n assetContact: AssetContact\n assetId: string\n contact: Contact\n projectContact: ProjectContact\n scanContact: ScanContact\n}\n\nexport interface DeletePrintPageTemplatePathParameters {\n printPageTemplateId: string\n}\n\nexport interface UpdateScanCustomAttributePathParameters {\n scanId: string\n}\n\nexport interface UpdateScanCustomAttributeRequestBody {\n customAttributes?: NestedKeyValueObject | null\n}\n\nexport interface UpdateScanCustomAttributeResponseBody {\n scan: Scan\n}\n\nexport interface GetUserRolesResponseBody {\n userRoles: UserRole[]\n}\n\nexport interface UpdatePrintStickerTemplatePathParameters {\n printStickerTemplateId: string\n}\n\nexport interface UpdatePrintStickerTemplateRequestBody {\n bleed?: boolean | null\n created?: string | Date | number | null\n isDeleted?: boolean | null\n lastUsedAt?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n previewImage?: string | null\n serializedFabric: NestedKeyValueObject\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit: PrintUnit\n}\n\nexport interface UpdatePrintStickerTemplateResponseBody {\n printStickerTemplate: PrintStickerTemplate\n}\n\nexport interface GetSessionRefreshUserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface CreateUserRequestBody {\n companyName?: string | null\n email: string\n firstName?: string | null\n groups?: string | null\n lastName?: string | null\n middleName?: string | null\n password: string\n pricePlanName?: string | null\n}\n\nexport interface GetSessionRequestBody {\n email: string\n password: string\n}\n\nexport interface GetSessionResponseBody extends UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface CheckSessionResponseBody {\n authenticated: boolean\n expires?: string | Date | number | null\n scope?: AuthTokenScope | null\n user?: User | null\n userId?: string | null\n}\n\nexport interface ChangePasswordRequestBody {\n newPassword: string\n password?: string | null\n}\n\nexport interface ChangePasswordResponseBody extends UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface DeleteSessionResponseBody extends UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface ResetPasswordRequestBody {\n email: string\n}\n\nexport interface ResendConfirmationRequestBody {\n email: string\n pricePlanName?: string | null\n}\n\nexport interface DeleteUserMediaPathParameters {\n mediaId: string\n}\n\nexport interface DeleteUserMediaResponseBody {\n userMedia: UserMedia\n}\n\n// HANDLER REQUEST CLASSES\n\nexport class ResetApiKeySecretRequest extends RequestPatch<ResetApiKeySecretPathParameters, undefined, undefined, ResetApiKeySecretResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"apiKeyId\",\"routePart\":\"apikeys\",\"sdkPartName\":\"apikey\"},{\"routePart\":\"secret\",\"sdkPartName\":\"secret\"}]\n}\n\nexport class UpdateApiKeyRequest extends RequestPatch<UpdateApiKeyPathParameters, undefined, UpdateApiKeyRequestBody, UpdateApiKeyResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"apiKeyId\",\"routePart\":\"apikeys\",\"sdkPartName\":\"apikey\"}]\n}\n\nexport class GetAppByAppIdRequest extends RequestGet<GetAppByAppIdPathParameters, undefined, GetAppByAppIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appId\",\"routePart\":\"apps\",\"sdkPartName\":\"app\"}]\n}\n\nexport class GetPublishedAppsRequest extends RequestGet<undefined, GetPublishedAppsQueryStringParameters, GetPublishedAppsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"apps/published\",\"sdkPartName\":\"appsPublished\"}]\n}\n\nexport class UpdateAppByAppIdRequest extends RequestPatch<UpdateAppByAppIdPathParameters, undefined, UpdateAppByAppIdRequestBody, UpdateAppByAppIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appId\",\"routePart\":\"apps\",\"sdkPartName\":\"app\"}]\n}\n\nexport class GetAppsRequest extends RequestGet<undefined, GetAppsQueryStringParameters, GetAppsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"apps\",\"sdkPartName\":\"apps\"}]\n}\n\nexport class GetApiKeyRequest extends RequestGet<GetApiKeyPathParameters, undefined, GetApiKeyResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"apiKeyId\",\"routePart\":\"apikeys\",\"sdkPartName\":\"apikey\"}]\n}\n\nexport class LoadAppRequest extends RequestPost<LoadAppPathParameters, undefined, undefined, LoadAppResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appId\",\"routePart\":\"apps\",\"sdkPartName\":\"app\"},{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"load\",\"sdkPartName\":\"load\"}]\n}\n\nexport class GetMainAccountByAppAccountIdRequest extends RequestGet<GetMainAccountByAppAccountIdPathParameters, undefined, GetMainAccountByAppAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appAccountId\",\"routePart\":\"appsAccounts\",\"sdkPartName\":\"appsAccount\"},{\"routePart\":\"main\",\"sdkPartName\":\"main\"}]\n}\n\nexport class ComposeAssetByAssetTypeRequest extends RequestPost<ComposeAssetByAssetTypePathParameters, undefined, ComposeAssetByAssetTypeRequestBody, ComposeAssetByAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class DeleteAssetTypeRequest extends RequestDelete<DeleteAssetTypePathParameters, undefined, DeleteAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"}]\n}\n\nexport class GetAppAccountByAppAccountIdRequest extends RequestGet<GetAppAccountPathParameters, undefined, GetAppAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appAccountId\",\"routePart\":\"appsAccounts\",\"sdkPartName\":\"appsAccount\"}]\n}\n\nexport class CreateAssetByAssetTypeRequest extends RequestPost<CreateAssetByAssetTypePathParameters, undefined, CreateAssetByAssetTypeRequestBody, CreateAssetByAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetAssetsByAssetTypeRequest extends RequestGet<GetAssetsByAssetTypePathParameters, GetAssetsByAssetTypeQueryStringParameters, GetAssetsByAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetAssetTypeByAssetTypeIdRequest extends RequestGet<GetAssetTypeByAssetTypeIdPathParameters, GetAssetTypeByAssetTypeIdQueryStringParameters, GetAssetTypeByAssetTypeIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"}]\n}\n\nexport class GetApiKeySecretRequest extends RequestGet<GetApiKeySecretPathParameters, undefined, GetApiKeySecretResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"apiKeyId\",\"routePart\":\"apikeys\",\"sdkPartName\":\"apikey\"},{\"routePart\":\"secret\",\"sdkPartName\":\"secret\"}]\n}\n\nexport class UpdateAssetTypeRequest extends RequestPatch<UpdateAssetTypePathParameters, undefined, UpdateAssetTypeRequestBody, UpdateAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"}]\n}\n\nexport class GetAssetTypeCountsByLocationRequest extends RequestGet<GetLocationCountsForAssetTypePathParameters, GetLocationCountsForAssetTypeQueryStringParameters, GetLocationCountsForAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"routePart\":\"locations\",\"sdkPartName\":\"locations\"}]\n}\n\nexport class CreateContactByAssetIdRequest extends RequestPost<CreateContactByAssetIdPathParameters, undefined, CreateContactByAssetIdRequestBody, CreateContactByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class UpdateAssetTypeCountAtLocationRequest extends RequestPatch<UpdateAssetTypeCountAtLocationPathParameters, undefined, UpdateAssetTypeCountAtLocationRequestBody, UpdateAssetTypeCountAtLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"}]\n}\n\nexport class CreateQrCodeByAssetIdRequest extends RequestPost<CreateQrCodeByAssetIdPathParameters, undefined, CreateQrCodeByAssetIdRequestBody, CreateQrCodeByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class CreateNeighborsByAssetIdRequest extends RequestPost<CreateNeighborsByAssetIdPathParameters, undefined, CreateNeighborsByAssetIdRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"neighbors\",\"sdkPartName\":\"neighbors\"}]\n}\n\nexport class DeleteAssetRequest extends RequestDelete<DeleteAssetPathParameters, undefined, DeleteAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class GetAssetTypeCountAtLocationRequest extends RequestGet<GetAssetTypeCountAtLocationPathParameters, undefined, GetAssetTypeCountAtLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"}]\n}\n\nexport class CreateQrCodesByAssetIdRequest extends RequestPost<CreateQrCodesByAssetIdPathParameters, undefined, CreateQrCodesByAssetIdRequestBody, CreateQrCodesByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"qracodes\",\"sdkPartName\":\"qracodes\"}]\n}\n\nexport class NameRequest extends RequestGet<GetAssetPathParameters, GetAssetQueryStringParameters, GetAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class GetAssetHistoryRequest extends RequestGet<GetAssetHistoryByAssetIdPathParameters, GetAssetHistoryByAssetIdQueryStringParameters, GetAssetHistoryByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"history\",\"sdkPartName\":\"history\"}]\n}\n\nexport class GetExternalNeighborScanCountByAssetIdRequest extends RequestGet<GetExternalNeighborScanCountByAssetIdPathParameters, GetExternalNeighborScanCountByAssetIdQueryStringParameters, GetExternalNeighborScanCountByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"parm\":\"url\",\"routePart\":\"urls\",\"sdkPartName\":\"url\"}]\n}\n\nexport class GetNeighborScanCountByAssetIdRequest extends RequestGet<GetNeighborScanCountByAssetIdPathParameters, GetNeighborScanCountByAssetIdQueryStringParameters, GetNeighborScanCountByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"parm\":\"neighborId\",\"routePart\":\"neighbors\",\"sdkPartName\":\"neighbor\"}]\n}\n\nexport class GetContactsByAssetIdRequest extends RequestGet<GetContactsByAssetIdPathParameters, GetContactsByAssetIdQueryStringParameters, GetContactsByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class GetNeighborsByAssetIdRequest extends RequestGet<GetNeighborsByAssetIdPathParameters, GetNeighborsByAssetIdQueryStringParameters, GetNeighborsByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"neighbors\",\"sdkPartName\":\"neighbors\"}]\n}\n\nexport class GetScanExportByAssetIdRequest extends RequestPost<GetScanExportByAssetIdPathParameters, undefined, GetScanExportByAssetIdRequestBody, GetScanExportByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"scans/export\",\"sdkPartName\":\"scansExport\"}]\n}\n\nexport class GetUserMediasByAssetIdRequest extends RequestGet<GetUserMediasByAssetIdPathParameters, GetUserMediasByAssetIdQueryStringParameters, GetUserMediasByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedias\"}]\n}\n\nexport class GetScanLocationDataByAssetIdRequest extends RequestGet<GetScanLocationDataByAssetIdPathParameters, GetScanLocationDataByAssetIdQueryStringParameters, GetScanLocationDataByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"scans/location\",\"sdkPartName\":\"scansLocation\"}]\n}\n\nexport class GetQrCodesByAssetIdRequest extends RequestGet<GetQrCodesByAssetIdPathParameters, GetQrCodesByAssetIdQueryStringParameters, GetQrCodesByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class UnlinkContactToAssetRequest extends RequestDelete<UnlinkContactFromAssetPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class GetScansByAssetIdRequest extends RequestGet<GetScansByAssetIdPathParameters, GetScansByAssetIdQueryStringParameters, GetScansByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"scans\",\"sdkPartName\":\"scans\"}]\n}\n\nexport class GetAccountAccessDataRequest extends RequestGet<CheckAccountAccessPathParameters, undefined, CheckAccountAccessResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"confirm\",\"sdkPartName\":\"confirm\"}]\n}\n\nexport class CreateAssetTypeByAccountIdRequest extends RequestPost<CreateAssetTypeByAccountIdPathParameters, undefined, CreateAssetTypeByAccountIdRequestBody, CreateAssetTypeByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assettypes\",\"sdkPartName\":\"assettypes\"}]\n}\n\nexport class DeleteNeighborsByAssetIdRequest extends RequestPost<DeleteNeighborsByAssetIdPathParameters, undefined, DeleteNeighborsByAssetIdRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"neighbors/delete\",\"sdkPartName\":\"neighborsDelete\"}]\n}\n\nexport class CreateApiKeyByAccountIdRequest extends RequestPost<CreateApiKeyByAccountIdPathParameters, undefined, CreateApiKeyByAccountIdRequestBody, CreateApiKeyByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"apikeys\",\"sdkPartName\":\"apikeys\"}]\n}\n\nexport class CheckUrlSafetyByAccountIdRequest extends RequestPost<CheckUrlSafetyByAccountIdPathParameters, undefined, CheckUrlSafetyByAccountIdRequestBody, CheckUrlSafetyByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"urlSafeties\",\"sdkPartName\":\"urlSafeties\"}]\n}\n\nexport class CreateInvitationByAccountIdRequest extends RequestPost<CreateInvitationByAccountIdPathParameters, undefined, CreateInvitationByAccountIdRequestBody, CreateInvitationByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"invitations\",\"sdkPartName\":\"invitations\"}]\n}\n\nexport class UpdateAssetRequest extends RequestPatch<UpdateAssetPathParameters, undefined, UpdateAssetRequestBody, UpdateAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class CreateInvitationsByAccountIdRequest extends RequestPost<CreateInvitationsByAccountIdPathParameters, undefined, CreateInvitationsByAccountIdRequestBody, CreateInvitationsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"invitations/batch\",\"sdkPartName\":\"invitationsBatch\"}]\n}\n\nexport class CreatePrintPageTemplateByAccountIdRequest extends RequestPost<CreatePrintPageTemplateByAccountIdPathParameters, undefined, CreatePrintPageTemplateByAccountIdRequestBody, CreatePrintPageTemplateByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplates\"}]\n}\n\nexport class CreateLocationByAccountIdRequest extends RequestPost<CreateLocationByAccountIdPathParameters, undefined, CreateLocationByAccountIdRequestBody, CreateLocationByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"locations\",\"sdkPartName\":\"locations\"}]\n}\n\nexport class LinkContactToAssetRequest extends RequestPost<LinkContactToAssetPathParameters, undefined, LinkContactToAssetRequestBody, LinkContactToAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class CreateQrCodeLogoByAccountRequest extends RequestPost<CreateQrCodeLogoByAccountIdPathParameters, undefined, CreateQrCodeLogoByAccountIdRequestBody, CreateQrCodeLogoByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"qrcodelogos\",\"sdkPartName\":\"qrcodelogos\"}]\n}\n\nexport class CreateImageUploadPresignedUrlRequest extends RequestPost<CreateImageUploadPresignedPathParameters, undefined, CreateImageUploadPresignedRequestBody, CreateImageUploadPresignedResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"image/upload\",\"sdkPartName\":\"imageUpload\"}]\n}\n\nexport class CreateProjectByAccountIdRequest extends RequestPost<CreateProjectByAccountIdPathParameters, undefined, CreateProjectByAccountIdRequestBody, CreateProjectByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"projects\",\"sdkPartName\":\"projects\"}]\n}\n\nexport class CreateQueryableCustomAttributeRequest extends RequestPost<CreateQueryableCustomAttributeByAccountIdPathParameters, undefined, CreateQueryableCustomAttributeByAccountIdRequestBody, CreateQueryableCustomAttributeByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"customattributes\",\"sdkPartName\":\"customattributes\"}]\n}\n\nexport class CreateUserMediaMultipartPresignedUrlByAccountIdRequest extends RequestPost<CreateUserMediaMultipartPresignedUrlByAccountIdPathParameters, undefined, CreateUserMediaMultipartPresignedUrlByAccountIdRequestBody, CreateUserMediaMultipartPresignedUrlByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"usermedias/presignedurlmultipart\",\"sdkPartName\":\"usermediasPresignedurlmultipart\"}]\n}\n\nexport class CreateAppRequest extends RequestPost<CreateAppByAccountIdPathParameters, undefined, CreateAppByAccountIdRequestBody, CreateAppByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"apps\",\"sdkPartName\":\"apps\"}]\n}\n\nexport class CreateQrCodeStylingTemplateByAccountRequest extends RequestPost<CreateQrCodeStylingTemplateByAccountIdPathParameters, undefined, CreateQrCodeStylingTemplateByAccountIdRequestBody, CreateQrCodeStylingTemplateByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplates\"}]\n}\n\nexport class CreateTicketByAccountIdRequest extends RequestPost<CreateTicketByAccountIdPathParameters, undefined, CreateTicketByAccountIdRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"zendeskTicket\",\"sdkPartName\":\"zendeskTicket\"}]\n}\n\nexport class DeleteContactsByAccountIdRequest extends RequestDelete<DeleteContactsByAccountIdPathParameters, DeleteContactsByAccountIdQueryStringParameters, DeleteContactsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts/batch\",\"sdkPartName\":\"contactsBatch\"}]\n}\n\nexport class GetAccountRequest extends RequestGet<GetAccountPathParameters, undefined, GetAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"}]\n}\n\nexport class GetCustomDomainRequest extends RequestGet<GetAccountDomainPathParameters, undefined, GetAccountDomainResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"customDomain\",\"routePart\":\"customDomains\",\"sdkPartName\":\"customDomain\"}]\n}\n\nexport class CreatePrintStickerTemplateByAccountIdRequest extends RequestPost<CreatePrintStickerTemplateByAccountIdPathParameters, undefined, CreatePrintStickerTemplateByAccountIdRequestBody, CreatePrintStickerTemplateByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplates\"}]\n}\n\nexport class CreateUserMediaPresignedUrlByAccountIdRequest extends RequestPost<CreateUserMediaPresignedUrlByAccountIdPathParameters, undefined, CreateUserMediaPresignedUrlByAccountIdRequestBody, CreateUserMediaPresignedUrlByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"usermedias/presignedurl\",\"sdkPartName\":\"usermediasPresignedurl\"}]\n}\n\nexport class DeleteUserByAccountIdRequest extends RequestDelete<DeleteUserByAccountIdPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class GetAdvancedAssetReportByAccountIdRequest extends RequestGet<GetAdvancedAssetReportByAccountIdPathParameters, GetAdvancedAssetReportByAccountIdQueryStringParameters, GetAdvancedAssetReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/report/advanced\",\"sdkPartName\":\"advancedAssetsReport\"}]\n}\n\nexport class GetAdvancedScanReportByAccountIdRequest extends RequestGet<GetAdvancedScanReportByAccountIdPathParameters, GetAdvancedScanReportByAccountIdQueryStringParameters, GetAdvancedScanReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/report/advanced\",\"sdkPartName\":\"advancedScansReport\"}]\n}\n\nexport class GetAdvancedContactReportByAccountIdRequest extends RequestGet<GetAdvancedContactReportByAccountIdPathParameters, GetAdvancedContactReportByAccountIdQueryStringParameters, GetAdvancedContactReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts/report/advanced\",\"sdkPartName\":\"advancedContactsReport\"}]\n}\n\nexport class GetAllAppsByAccountIdRequest extends RequestGet<GetAllAppsByAccountIdPathParameters, GetAllAppsByAccountIdQueryStringParameters, GetAllAppsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"owner/apps\",\"sdkPartName\":\"ownerApps\"}]\n}\n\nexport class GetAssetGraphsByAccountIdRequest extends RequestGet<GetAssetGraphsByAccountIdPathParameters, GetAssetGraphsByAccountIdQueryStringParameters, GetAssetGraphsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraphs\"}]\n}\n\nexport class GetApiKeysByAccountIdRequest extends RequestGet<GetApiKeysByAccountIdPathParameters, GetApiKeysByAccountIdQueryStringParameters, GetApiKeysByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"apikeys\",\"sdkPartName\":\"apikeys\"}]\n}\n\nexport class GetAssetExportByAccountIdRequest extends RequestPost<GetAssetExportByAccountIdPathParameters, undefined, GetAssetExportByAccountIdRequestBody, GetAssetExportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/export\",\"sdkPartName\":\"assetsExport\"}]\n}\n\nexport class GetAssetsByAccountIdRequest extends RequestGet<GetAssetsByAccountIdPathParameters, GetAssetsByAccountIdQueryStringParameters, GetAssetsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetBasicAssetReportByAccountIdRequest extends RequestGet<GetBasicAssetReportByAccountIdPathParameters, undefined, GetBasicAssetReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/report/basic\",\"sdkPartName\":\"basicAssetsReport\"}]\n}\n\nexport class GetBasicContactReportByAccountIdRequest extends RequestGet<GetBasicContactReportByAccountIdPathParameters, undefined, GetBasicContactReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts/report/basic\",\"sdkPartName\":\"basicContactsReport\"}]\n}\n\nexport class GetAssetTypesByAccountIdRequest extends RequestGet<GetAssetTypesByAccountIdPathParameters, GetAssetTypesByAccountIdQueryStringParameters, GetAssetTypesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assettypes\",\"sdkPartName\":\"assettypes\"}]\n}\n\nexport class GetBatchesByAccountIdRequest extends RequestGet<GetBatchesByAccountIdPathParameters, GetBatchesByAccountIdQueryStringParameters, GetBatchesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"batch\",\"sdkPartName\":\"batch\"}]\n}\n\nexport class GetConsentByAccountIdRequest extends RequestGet<GetConsentByAccountIdPathParameters, GetConsentByAccountIdQueryStringParameters, GetConsentByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class GetContactsByAccountIdRequest extends RequestGet<GetContactsByAccountIdPathParameters, GetContactsByAccountIdQueryStringParameters, GetContactsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class GetInstalledAppsByAccountIdRequest extends RequestGet<GetInstalledAppsByAccountIdPathParameters, GetInstalledAppsByAccountIdQueryStringParameters, GetInstalledAppsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"apps\",\"sdkPartName\":\"apps\"}]\n}\n\nexport class GetJobsByAccountIdRequest extends RequestGet<GetJobsByAccountIdPathParameters, GetJobsByAccountIdQueryStringParameters, GetJobsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"jobs\",\"sdkPartName\":\"jobs\"}]\n}\n\nexport class GetDomainsByAccountIdRequest extends RequestGet<GetDomainsByAccountIdPathParameters, GetDomainsByAccountIdQueryStringParameters, GetDomainsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"customDomains\",\"sdkPartName\":\"customDomains\"}]\n}\n\nexport class GetContactExportByAccountIdRequest extends RequestPost<GetContactExportByAccountIdPathParameters, undefined, GetContactExportByAccountIdRequestBody, GetContactExportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts/export\",\"sdkPartName\":\"contactsExport\"}]\n}\n\nexport class GetMostScannedAssetsByAccountIdRequest extends RequestGet<GetMostScannedAssetsByAccountIdPathParameters, GetMostScannedAssetsByAccountIdQueryStringParameters, GetMostScannedAssetsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/mostscanned\",\"sdkPartName\":\"assetsMostscanned\"}]\n}\n\nexport class GetPluginsByAccountIdRequest extends RequestGet<GetPluginsByAccountIdPathParameters, undefined, GetPluginsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"plugins\",\"sdkPartName\":\"plugins\"}]\n}\n\nexport class GetPrintJobsByAccountIdRequest extends RequestGet<GetPrintJobsByAccountIdPathParameters, GetPrintJobsByAccountIdQueryStringParameters, GetPrintJobsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printJobs\",\"sdkPartName\":\"printJobs\"}]\n}\n\nexport class GetPricePlanByAccountIdRequest extends RequestGet<GetPricePlanByAccountIdPathParameters, undefined, GetPricePlanByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"priceplan\",\"sdkPartName\":\"pricePlan\"}]\n}\n\nexport class GetPrintPageTemplatesByAccountIdRequest extends RequestGet<GetPrintPageTemplatesByAccountIdPathParameters, GetPrintPageTemplatesByAccountIdQueryStringParameters, GetPrintPageTemplatesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplates\"}]\n}\n\nexport class GetProjectExportByAccountIdRequest extends RequestPost<GetProjectExportByAccountIdPathParameters, undefined, GetProjectExportByAccountIdRequestBody, GetProjectExportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"projects/export\",\"sdkPartName\":\"projectsExport\"}]\n}\n\nexport class GetPrintStickerTemplatesByAccountIdRequest extends RequestGet<GetPrintStickerTemplatesByAccountIdPathParameters, GetPrintStickerTemplatesByAccountIdQueryStringParameters, GetPrintStickerTemplatesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplates\"}]\n}\n\nexport class GetQrCodeStylingTemplatesByAccountIdRequest extends RequestGet<GetQrCodeStylingTemplatesByAccountIdPathParameters, GetQrCodeStylingTemplatesByAccountIdQueryStringParameters, GetQrCodeStylingTemplatesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplates\"}]\n}\n\nexport class GetQrCodeLogosByAccountIdRequest extends RequestGet<GetQrCodeLogosByAccountIdPathParameters, GetQrCodeLogosByAccountIdQueryStringParameters, GetQrCodeLogosByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"qrcodelogos\",\"sdkPartName\":\"qrcodelogos\"}]\n}\n\nexport class GetProjectsByAccountIdRequest extends RequestGet<GetProjectsByAccountIdPathParameters, GetProjectsByAccountIdQueryStringParameters, GetProjectsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"projects\",\"sdkPartName\":\"projects\"}]\n}\n\nexport class GetQrCodesByAccountIdRequest extends RequestGet<GetQrCodesByAccountIdPathParameters, GetQrCodesByAccountIdQueryStringParameters, GetQrCodesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class GetAssetsScanCountByAccountIdRequest extends RequestPost<GetAssetsScanCountByAccountIdPathParameters, GetAssetsScanCountByAccountIdQueryStringParameters, GetAssetsScanCountByAccountIdRequestBody, GetAssetsScanCountByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/scans\",\"sdkPartName\":\"assetsScans\"}]\n}\n\nexport class GetUsersByAccountIdRequest extends RequestGet<GetUsersByAccountIdPathParameters, GetUsersByAccountIdQueryStringParameters, GetUsersByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"users\",\"sdkPartName\":\"users\"}]\n}\n\nexport class GetScanTimelineByAccountIdRequest extends RequestGet<GetScanTimelineByAccountIdPathParameters, GetScanTimelineByAccountIdQueryStringParameters, GetScanTimelineByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/timeline\",\"sdkPartName\":\"scansTimeline\"}]\n}\n\nexport class GetScanDayOfWeekByAccountIdRequest extends RequestGet<GetScanDayOfWeekByAccountIdPathParameters, GetScanDayOfWeekByAccountIdQueryStringParameters, GetScanDayOfWeekByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/dayofweek\",\"sdkPartName\":\"scansDayofweek\"}]\n}\n\nexport class GetUserMediasByAccountIdRequest extends RequestGet<GetUserMediasByAccountIdPathParameters, GetUserMediasByAccountIdQueryStringParameters, GetUserMediasByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedias\"}]\n}\n\nexport class GetLocationsByAccountIdRequest extends RequestGet<GetLocationsByAccountIdPathParameters, GetLocationsByAccountIdQueryStringParameters, GetLocationsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"locations\",\"sdkPartName\":\"locations\"}]\n}\n\nexport class GetScanExportByAccountIdRequest extends RequestPost<GetScanExportByAccountIdPathParameters, undefined, GetScanExportByAccountIdRequestBody, GetScanExportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/export\",\"sdkPartName\":\"scansExport\"}]\n}\n\nexport class GetScansByAccountIdRequest extends RequestGet<GetScansByAccountIdPathParameters, GetScansByAccountIdQueryStringParameters, GetScansByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans\",\"sdkPartName\":\"scans\"}]\n}\n\nexport class GetUserByAccountIdRequest extends RequestGet<GetUserByAccountIdPathParameters, undefined, GetUserByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class GetUsersRolesByAccountIdRequest extends RequestGet<GetUsersRolesByAccountIdPathParameters, undefined, GetUsersRolesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"roles\",\"sdkPartName\":\"roles\"}]\n}\n\nexport class GetQueryableCustomAttributeRequest extends RequestGet<GetQueryableCustomAttributesByAccountIdPathParameters, GetQueryableCustomAttributesByAccountIdQueryStringParameters, GetQueryableCustomAttributesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"customattributes\",\"sdkPartName\":\"customattributes\"}]\n}\n\nexport class InstallAppToAccountRequest extends RequestPost<InstallAppToAccountPathParameters, undefined, undefined, InstallAppToAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"appId\",\"routePart\":\"apps\",\"sdkPartName\":\"app\"},{\"routePart\":\"install\",\"sdkPartName\":\"install\"}]\n}\n\nexport class AdvanceStripeClockByAccountIdRequest extends RequestPost<StripeClockPathParameters, undefined, StripeClockRequestBody, StripeClockResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"clock\",\"sdkPartName\":\"clock\"}]\n}\n\nexport class UpdatePricePlanByAccountIdRequest extends RequestPatch<UpdatePricePlanByAccountIdPathParameters, undefined, UpdatePricePlanByAccountIdRequestBody, UpdatePricePlanByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"priceplan\",\"sdkPartName\":\"pricePlan\"}]\n}\n\nexport class UpdateEngagePricePlanRequest extends RequestPatch<UpdatePricePlanPathParameters, undefined, UpdatePricePlanRequestBody, UpdatePricePlanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"engagePricePlan\",\"sdkPartName\":\"engagePricePlan\"}]\n}\n\nexport class CreateCampaignAccountByAccountIdRequest extends RequestPost<SendCampaignInformationByAccountIdPathParameters, undefined, SendCampaignInformationByAccountIdRequestBody, SendCampaignInformationByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"campaignInformation\",\"sdkPartName\":\"campaignInformation\"}]\n}\n\nexport class UpdateUserByAccountIdRequest extends RequestPatch<UpdateUserByAccountIdPathParameters, undefined, UpdateUserByAccountIdRequestBody, UpdateUserByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class UpdateAccountRequest extends RequestPatch<UpdateAccountPathParameters, undefined, UpdateAccountRequestBody, UpdateAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"}]\n}\n\nexport class RetrieveCampaignStatusByAccountIdRequest extends RequestGet<RetrieveCampaignStatusByAccountIdPathParameters, undefined, RetrieveCampaignStatusByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"campaignInformation\",\"sdkPartName\":\"campaignInformation\"}]\n}\n\nexport class UpdateUsersRolesByAccountIdRequest extends RequestPatch<UpdateUsersRolesByAccountIdPathParameters, undefined, UpdateUsersRolesByAccountIdRequestBody, UpdateUsersRolesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"roles\",\"sdkPartName\":\"roles\"}]\n}\n\nexport class UploadQrCodeLogoByAccountRequest extends RequestPost<UploadQrCodeLogoByAccountIdPathParameters, undefined, UploadQrCodeLogoByAccountIdRequestBody, UploadQrCodeLogoByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"qrcodelogos/upload\",\"sdkPartName\":\"qrcodelogosUpload\"}]\n}\n\nexport class GetAssetsByBatchIdRequest extends RequestGet<GetAssetsByBatchIdPathParameters, GetAssetsByBatchIdQueryStringParameters, GetAssetsByBatchIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"batchId\",\"routePart\":\"batch\",\"sdkPartName\":\"batch\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class ChangeSubscriptionPreviewRequest extends RequestGet<ChangeSubscriptionPreviewPathParameters, ChangeSubscriptionPreviewQueryStringParameters, ChangeSubscriptionPreviewResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/preview/upgradePlan\",\"sdkPartName\":\"upgradePlanBillingPreview\"}]\n}\n\nexport class GetScanTimeOfDayByAccountIdRequest extends RequestGet<GetScanTimeOfDayByAccountIdPathParameters, GetScanTimeOfDayByAccountIdQueryStringParameters, GetScanTimeOfDayByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/timeofday\",\"sdkPartName\":\"scansTimeofday\"}]\n}\n\nexport class CancelDowngradeRequestRequest extends RequestPost<CancelDowngradeRequestPathParameters, undefined, undefined, CancelDowngradeRequestResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/cancelDowngrade\",\"sdkPartName\":\"billingCancelDowngrade\"}]\n}\n\nexport class GetAllAccountsRequest extends RequestGet<undefined, GetAllAccountsQueryStringParameters, GetAllAccountsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"care/accounts\",\"sdkPartName\":\"careAccounts\"}]\n}\n\nexport class GetCurrentPeriodRequest extends RequestGet<GetCurrentPeriodPathParameters, undefined, GetCurrentPeriodResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/currentPeriod\",\"sdkPartName\":\"billingCurrentPeriod\"}]\n}\n\nexport class CreateSetupIntentRequest extends RequestPost<CreateSetupIntentPathParameters, undefined, CreateSetupIntentRequestBody, CreateSetupIntentResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/setupIntent\",\"sdkPartName\":\"billingSetupIntent\"}]\n}\n\nexport class CancelSubscriptionRequest extends RequestPost<CancelSubscriptionPathParameters, undefined, CancelSubscriptionRequestBody, CancelSubscriptionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/cancelSubscription\",\"sdkPartName\":\"billingCancelSubscription\"}]\n}\n\nexport class GetInvoicesRequest extends RequestGet<GetInvoicesPathParameters, GetInvoicesQueryStringParameters, GetInvoicesResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/invoices\",\"sdkPartName\":\"billingInvoice\"}]\n}\n\nexport class GetBillingDetailsRequest extends RequestGet<GetBillingDetailsPathParameters, undefined, GetBillingDetailsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/details\",\"sdkPartName\":\"billingDetail\"}]\n}\n\nexport class DowngradePlanRequest extends RequestPost<DowngradePlanPathParameters, undefined, DowngradePlanRequestBody, DowngradePlanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/downgradePlan\",\"sdkPartName\":\"billingDowngradePlan\"}]\n}\n\nexport class ChangeSubscriptionRequest extends RequestPost<UpgradePlanPathParameters, undefined, UpgradePlanRequestBody, UpgradePlanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/upgradePlan\",\"sdkPartName\":\"billingUpgradePlan\"}]\n}\n\nexport class CreateConsentByContactIdRequest extends RequestPost<CreateConsentByContactIdPathParameters, undefined, CreateConsentByContactIdRequestBody, CreateConsentByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class GetConsentByContactIdRequest extends RequestGet<GetConsentByContactIdPathParameters, GetConsentByContactIdQueryStringParameters, GetConsentByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class GetAssetsByContactIdRequest extends RequestGet<GetAssetsByContactIdPathParameters, GetAssetsByContactIdQueryStringParameters, GetAssetsByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetContactExportByContactIdRequest extends RequestPost<GetContactExportByContactIdPathParameters, undefined, GetContactExportByContactIdRequestBody, GetContactExportByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"export\",\"sdkPartName\":\"export\"}]\n}\n\nexport class GetContactRequest extends RequestGet<GetContactPathParameters, undefined, GetContactResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class UpdateContactRequest extends RequestPatch<UpdateContactPathParameters, undefined, UpdateContactRequestBody, UpdateContactResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class DeleteContactRequest extends RequestDelete<DeleteContactPathParameters, undefined, DeleteContactResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class GetScanExportByContactIdRequest extends RequestPost<GetScanExportByContactIdPathParameters, undefined, GetScanExportByContactIdRequestBody, GetScanExportByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"scans/export\",\"sdkPartName\":\"scansExport\"}]\n}\n\nexport class GetScanLocationDataByContactIdRequest extends RequestGet<GetScanLocationDataByContactIdPathParameters, GetScanLocationDataByContactIdQueryStringParameters, GetScanLocationDataByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"scans/location\",\"sdkPartName\":\"scansLocation\"}]\n}\n\nexport class DeleteConsentByContactIdRequest extends RequestDelete<DeleteConsentByContactIdPathParameters, DeleteConsentByContactIdQueryStringParameters, DeleteConsentByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class LinkContactToScanRequest extends RequestPost<LinkContactToScanPathParameters, undefined, LinkContactToScanRequestBody, LinkContactToScanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class RetryCustomDomainRequest extends RequestPost<RetryCustomDomainPathParameters, undefined, undefined, RetryCustomDomainResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"customDomain\",\"routePart\":\"customdomains\",\"sdkPartName\":\"customdomain\"},{\"routePart\":\"retry\",\"sdkPartName\":\"retry\"}]\n}\n\nexport class GetScansByContactIdRequest extends RequestGet<GetScansByContactIdPathParameters, undefined, GetScansByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"scans\",\"sdkPartName\":\"scans\"}]\n}\n\nexport class DeleteCustomDomainRequest extends RequestDelete<DeleteCustomDomainPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"customDomain\",\"routePart\":\"customdomains\",\"sdkPartName\":\"customdomain\"}]\n}\n\nexport class DeleteAssetGraphRequest extends RequestDelete<DeleteAssetGraphPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetGraphId\",\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraph\"}]\n}\n\nexport class GetAssetGraphRequest extends RequestGet<GetAssetGraphPathParameters, undefined, GetAssetGraphResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetGraphId\",\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraph\"}]\n}\n\nexport class GetInvitationRequest extends RequestGet<GetInvitationPathParameters, undefined, GetInvitationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"invitationId\",\"routePart\":\"invitations\",\"sdkPartName\":\"invitation\"}]\n}\n\nexport class DeleteInvitationRequest extends RequestDelete<DeleteInvitationPathParameters, undefined, DeleteInvitationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"invitationId\",\"routePart\":\"invitations\",\"sdkPartName\":\"invitation\"}]\n}\n\nexport class CreateUserByInvitationIdRequest extends RequestPost<CreateUserByInvitationIdPathParameters, undefined, undefined, CreateUserByInvitationIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"invitationId\",\"routePart\":\"invitations\",\"sdkPartName\":\"invitation\"},{\"routePart\":\"users\",\"sdkPartName\":\"users\"}]\n}\n\nexport class DeleteJobRequest extends RequestDelete<DeleteJobPathParameters, undefined, DeleteJobResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"jobId\",\"routePart\":\"jobs\",\"sdkPartName\":\"job\"}]\n}\n\nexport class UpdateAssetGraphRequest extends RequestPatch<UpdateAssetGraphPathParameters, undefined, UpdateAssetGraphRequestBody, UpdateAssetGraphResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetGraphId\",\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraph\"}]\n}\n\nexport class GetJobRequest extends RequestGet<GetJobPathParameters, undefined, GetJobResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"jobId\",\"routePart\":\"jobs\",\"sdkPartName\":\"job\"}]\n}\n\nexport class InvokePrintJobByJobIdRequest extends RequestPatch<InvokePrintJobByJobIdPathParameters, undefined, undefined, InvokePrintJobByJobIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printJobId\",\"routePart\":\"printJobs\",\"sdkPartName\":\"printJob\"}]\n}\n\nexport class UpdateLocationRequest extends RequestPatch<UpdateLocationPathParameters, undefined, UpdateLocationRequestBody, UpdateLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"}]\n}\n\nexport class DeleteLocationRequest extends RequestDelete<DeleteLocationPathParameters, DeleteLocationQueryStringParameters, DeleteLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"}]\n}\n\nexport class UpdateAssetsLocationsRequest extends RequestPatch<BatchUpdateAssetLocationsPathParameters, undefined, BatchUpdateAssetLocationsRequestBody, BatchUpdateAssetLocationsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetQrCodeLogoByQrCodeLogoIdRequest extends RequestGet<GetQrCodeLogoByQrCodeLogoIdPathParameters, undefined, GetQrCodeLogoByQrCodeLogoIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeLogoId\",\"routePart\":\"qrcodelogos\",\"sdkPartName\":\"qrcodelogo\"}]\n}\n\nexport class DeletePrintJobRequest extends RequestDelete<DeletePrintJobPathParameters, undefined, DeletePrintJobResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printJobId\",\"routePart\":\"printJobs\",\"sdkPartName\":\"printJob\"}]\n}\n\nexport class GetAssetsByLocationIdRequest extends RequestGet<GetAssetsByLocationPathParameters, GetAssetsByLocationQueryStringParameters, GetAssetsByLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class SendSupportEmailRequest extends RequestPost<undefined, undefined, SendSupportEmailRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"support\",\"sdkPartName\":\"support\"}]\n}\n\nexport class CreateLinkByQrCodeRequest extends RequestPost<CreateLinkByQrCodePathParameters, undefined, CreateLinkByQrCodeRequestBody, CreateLinkByQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"},{\"routePart\":\"links\",\"sdkPartName\":\"links\"}]\n}\n\nexport class DeleteLinkByQrCodeRequest extends RequestDelete<DeleteLinkByQrCodePathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"},{\"parm\":\"link\",\"routePart\":\"links\",\"sdkPartName\":\"link\"}]\n}\n\nexport class GetPricePlansRequest extends RequestGet<undefined, undefined, GetPricePlansResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"pricePlans\",\"sdkPartName\":\"pricePlans\"}]\n}\n\nexport class DeleteQrCodeRequest extends RequestDelete<DeleteQrCodePathParameters, undefined, DeleteQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"}]\n}\n\nexport class GetQrCodeLinkRequest extends RequestGet<GetQrCodeLinkPathParameters, undefined, GetQrCodeLinkResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeLink\",\"routePart\":\"qrcodelinks\",\"sdkPartName\":\"qrcodelink\"}]\n}\n\nexport class GetQrCodeRequest extends RequestGet<GetQrCodePathParameters, GetQrCodeQueryStringParameters, GetQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"}]\n}\n\nexport class GetLinksByQrCodeRequest extends RequestGet<GetLinksByQrCodePathParameters, undefined, GetLinksByQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"},{\"routePart\":\"links\",\"sdkPartName\":\"links\"}]\n}\n\nexport class CheckCustomLocatorKeyRangeRequest extends RequestGet<CheckCustomLocatorKeyRangePathParameters, CheckCustomLocatorKeyRangeQueryStringParameters, CheckCustomLocatorKeyRangeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"customDomain\",\"routePart\":\"customdomains\",\"sdkPartName\":\"customdomain\"},{\"routePart\":\"locator/collisions\",\"sdkPartName\":\"locatorCollisions\"}]\n}\n\nexport class ValidateFileRequest extends RequestPost<ValidateFilePathParameters, undefined, undefined, ValidateFileResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"fileId\",\"routePart\":\"files\",\"sdkPartName\":\"file\"},{\"routePart\":\"validate\",\"sdkPartName\":\"validate\"}]\n}\n\nexport class UpdateQrCodeLogoByQrCodeLogoIdRequest extends RequestPatch<UpdateQrCodeLogoByQrCodeLogoIdPathParameters, undefined, UpdateQrCodeLogoByQrCodeLogoIdRequestBody, UpdateQrCodeLogoByQrCodeLogoIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeLogoId\",\"routePart\":\"qrcodelogos\",\"sdkPartName\":\"qrcodelogo\"}]\n}\n\nexport class GetFileRequest extends RequestGet<GetFilePathParameters, undefined, GetFileResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"fileId\",\"routePart\":\"files\",\"sdkPartName\":\"file\"}]\n}\n\nexport class UpdateQrCodeRequest extends RequestPatch<UpdateQrCodePathParameters, undefined, UpdateQrCodeRequestBody, UpdateQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"}]\n}\n\nexport class CreateAssetBatchValidationJobByProjectIdRequest extends RequestPost<CreateAssetBatchValidationJobByProjectIdPathParameters, undefined, CreateAssetBatchValidationJobByProjectIdRequestBody, CreateAssetBatchValidationJobByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"jobs/assetbatch/validation\",\"sdkPartName\":\"validationJobsAssetbatch\"}]\n}\n\nexport class CreateAssetGraphByProjectIdRequest extends RequestPost<CreateAssetGraphByProjectIdPathParameters, undefined, CreateAssetGraphByProjectIdRequestBody, CreateAssetGraphByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraphs\"}]\n}\n\nexport class CreateContactByProjectIdRequest extends RequestPost<CreateContactByProjectIdPathParameters, undefined, CreateContactByProjectIdRequestBody, CreateContactByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class CreateAssetCreationJobByProjectIdRequest extends RequestPost<CreateAssetCreationJobByProjectIdPathParameters, undefined, CreateAssetCreationJobByProjectIdRequestBody, CreateAssetCreationJobByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"jobs/assetbatch\",\"sdkPartName\":\"jobsAssetbatch\"}]\n}\n\nexport class CreateAssetsByProjectIdRequest extends RequestPost<CreateAssetsByProjectIdPathParameters, undefined, CreateAssetsByProjectIdRequestBody, CreateAssetsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/batch\",\"sdkPartName\":\"assetsBatch\"}]\n}\n\nexport class CreateContactsByProjectIdRequest extends RequestPost<CreateContactsByProjectIdPathParameters, undefined, CreateContactsByProjectIdRequestBody, CreateContactsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/batch\",\"sdkPartName\":\"contactsBatch\"}]\n}\n\nexport class CreateTemplatedPrintPreviewByProjectIdRequest extends RequestPost<CreateTemplatedPrintPreviewByProjectIdPathParameters, undefined, CreateTemplatedPrintPreviewByProjectIdRequestBody, CreateTemplatedPrintPreviewByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"templatedPrint/preview\",\"sdkPartName\":\"templatedPrintPreview\"}]\n}\n\nexport class CreateSelfQueuePrintJobByProjectIdRequest extends RequestPost<CreateSelfQueuePrintJobByProjectIdPathParameters, undefined, CreateSelfQueuePrintJobByProjectIdRequestBody, CreateSelfQueuePrintJobByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"selfqueueprint\",\"sdkPartName\":\"selfqueueprint\"}]\n}\n\nexport class DeleteContactsByProjectIdRequest extends RequestDelete<DeleteContactsByProjectIdPathParameters, DeleteContactsByProjectIdQueryStringParameters, DeleteContactsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/batch\",\"sdkPartName\":\"contactsBatch\"}]\n}\n\nexport class CreateAssetByProjectIdRequest extends RequestPost<CreateAssetByProjectIdPathParameters, undefined, CreateAssetByProjectIdRequestBody, CreateAssetByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class CreateQrCodeByProjectIdRequest extends RequestPost<CreateQrCodeByProjectIdPathParameters, undefined, CreateQrCodeByProjectIdRequestBody, CreateQrCodeByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class DeleteSmsTemplateByProjectIdRequest extends RequestDelete<DeleteSmsTemplatePathParameters, undefined, DeleteSmsTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"parm\":\"smsTemplateName\",\"routePart\":\"smstemplates\",\"sdkPartName\":\"smsTemplate\"}]\n}\n\nexport class DeleteProjectRequest extends RequestDelete<DeleteProjectPathParameters, undefined, DeleteProjectResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"}]\n}\n\nexport class CreateAssetCreationPresignedUrlRequest extends RequestPost<CreateAssetCreationPresignedUrlByProjectIdPathParameters, undefined, CreateAssetCreationPresignedUrlByProjectIdRequestBody, CreateAssetCreationPresignedUrlByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"jobs/assetbatch/presignedurl\",\"sdkPartName\":\"presignedurlJobsAssetbatch\"}]\n}\n\nexport class CreateTemplatedPrintJobByProjectIdRequest extends RequestPost<CreateTemplatedPrintJobByProjectIdPathParameters, undefined, CreateTemplatedPrintJobByProjectIdRequestBody, CreateTemplatedPrintJobByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"printJobs\",\"sdkPartName\":\"printJobs\"}]\n}\n\nexport class GetAdvancedContactReportByProjectIdRequest extends RequestGet<GetAdvancedContactReportByProjectIdPathParameters, GetAdvancedContactReportByProjectIdQueryStringParameters, GetAdvancedContactReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/report/advanced\",\"sdkPartName\":\"advancedContactsReport\"}]\n}\n\nexport class GetAdvancedAssetReportByProjectIdRequest extends RequestGet<GetAdvancedAssetReportByProjectIdPathParameters, GetAdvancedAssetReportByProjectIdQueryStringParameters, GetAdvancedAssetReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/report/advanced\",\"sdkPartName\":\"advancedAssetsReport\"}]\n}\n\nexport class GetAdvancedScanReportByProjectIdRequest extends RequestGet<GetAdvancedScanReportByProjectIdPathParameters, GetAdvancedScanReportByProjectIdQueryStringParameters, GetAdvancedScanReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/report/advanced\",\"sdkPartName\":\"advancedScansReport\"}]\n}\n\nexport class GetAssetsByProjectIdRequest extends RequestGet<GetAssetsByProjectIdPathParameters, GetAssetsByProjectIdQueryStringParameters, GetAssetsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetBasicContactReportByProjectIdRequest extends RequestGet<GetBasicContactReportByProjectIdPathParameters, undefined, GetBasicContactReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/report/basic\",\"sdkPartName\":\"basicContactsReport\"}]\n}\n\nexport class GetBasicAssetReportByProjectIdRequest extends RequestGet<GetBasicAssetReportByProjectIdPathParameters, undefined, GetBasicAssetReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/report/basic\",\"sdkPartName\":\"basicAssetsReport\"}]\n}\n\nexport class GetConsentByProjectIdRequest extends RequestGet<GetConsentByProjectIdPathParameters, GetConsentByProjectIdQueryStringParameters, GetConsentByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class GetAssetExportByProjectIdRequest extends RequestPost<GetAssetExportByProjectIdPathParameters, undefined, GetAssetExportByProjectIdRequestBody, GetAssetExportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/export\",\"sdkPartName\":\"assetsExport\"}]\n}\n\nexport class CreateSmsTemplateByProjectIdRequest extends RequestPost<CreateSmsTemplateByProjectIdPathParameters, undefined, CreateSmsTemplateByProjectIdRequestBody, CreateSmsTemplateByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"smstemplates\",\"sdkPartName\":\"smsTemplates\"}]\n}\n\nexport class GetContactsByProjectIdRequest extends RequestGet<GetContactsByProjectIdPathParameters, GetContactsByProjectIdQueryStringParameters, GetContactsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class GetProjectByProjectIdRequest extends RequestGet<GetProjectByProjectIdPathParameters, undefined, GetProjectByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"}]\n}\n\nexport class GetContactExportByProjectIdRequest extends RequestPost<GetContactExportByProjectIdPathParameters, undefined, GetContactExportByProjectIdRequestBody, GetContactExportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/export\",\"sdkPartName\":\"contactsExport\"}]\n}\n\nexport class GetScanExportByProjectIdRequest extends RequestPost<GetScanExportByProjectIdPathParameters, undefined, GetScanExportByProjectIdRequestBody, GetScanExportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/export\",\"sdkPartName\":\"scansExport\"}]\n}\n\nexport class GetScanDayOfWeekByProjectIdRequest extends RequestGet<GetScanDayOfWeekByProjectIdPathParameters, GetScanDayOfWeekByProjectIdQueryStringParameters, GetScanDayOfWeekByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/dayofweek\",\"sdkPartName\":\"scansDayofweek\"}]\n}\n\nexport class GetQrCodesByProjectIdRequest extends RequestGet<GetQrCodesByProjectIdPathParameters, GetQrCodesByProjectIdQueryStringParameters, GetQrCodesByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class GetScanTimeOfDayByProjectIdRequest extends RequestGet<GetScanTimeOfDayByProjectIdPathParameters, GetScanTimeOfDayByProjectIdQueryStringParameters, GetScanTimeOfDayByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/timeofday\",\"sdkPartName\":\"scansTimeofday\"}]\n}\n\nexport class GetAssetGraphsByProjectIdRequest extends RequestGet<GetAssetGraphsByProjectIdPathParameters, GetAssetGraphsByProjectIdQueryStringParameters, GetAssetGraphsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraphs\"}]\n}\n\nexport class GetBatchesByProjectIdRequest extends RequestGet<GetBatchesByProjectIdPathParameters, GetBatchesByProjectIdQueryStringParameters, GetBatchesByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"batch\",\"sdkPartName\":\"batch\"}]\n}\n\nexport class GetMostScannedAssetsByProjectIdRequest extends RequestGet<GetMostScannedAssetsByProjectIdPathParameters, GetMostScannedAssetsByProjectIdQueryStringParameters, GetMostScannedAssetsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/mostscanned\",\"sdkPartName\":\"assetsMostscanned\"}]\n}\n\nexport class GetUserMediasByProjectIdRequest extends RequestGet<GetUserMediasByProjectIdPathParameters, GetUserMediasByProjectIdQueryStringParameters, GetUserMediasByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedias\"}]\n}\n\nexport class UpdateProjectByProjectIdRequest extends RequestPatch<UpdateProjectByProjectIdPathParameters, undefined, UpdateProjectByProjectIdRequestBody, UpdateProjectByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"}]\n}\n\nexport class GetScansByProjectIdRequest extends RequestGet<GetScansByProjectIdPathParameters, GetScansByProjectIdQueryStringParameters, GetScansByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans\",\"sdkPartName\":\"scans\"}]\n}\n\nexport class GetScanTimelineByProjectIdRequest extends RequestGet<GetScanTimelineByProjectIdPathParameters, GetScanTimelineByProjectIdQueryStringParameters, GetScanTimelineByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/timeline\",\"sdkPartName\":\"scansTimeline\"}]\n}\n\nexport class CompleteUserMediaMultipartUploadRequest extends RequestPost<CompleteUserMediaMultipartUploadPathParameters, undefined, CompleteUserMediaMultipartUploadRequestBody, CompleteUserMediaMultipartUploadResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"routePart\":\"multipart\",\"sdkPartName\":\"multipart\"}]\n}\n\nexport class LinkMediaToAssetRequest extends RequestPost<LinkMediaToAssetPathParameters, undefined, undefined, LinkMediaToAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class GetMediaRequest extends RequestGet<GetUserMediaPathParameters, undefined, GetUserMediaResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"}]\n}\n\nexport class LinkMediaToScanRequest extends RequestPost<LinkMediaToScanPathParameters, undefined, undefined, LinkMediaToScanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class LinkMediaToProjectRequest extends RequestPost<LinkMediaToProjectPathParameters, undefined, undefined, LinkMediaToProjectResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"projectId\",\"routePart\":\"project\",\"sdkPartName\":\"project\"}]\n}\n\nexport class UnlinkMediaToProjectRequest extends RequestDelete<UnlinkMediaToProjectPathParameters, undefined, UnlinkMediaToProjectResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"}]\n}\n\nexport class UnlinkMediaToScanRequest extends RequestDelete<UnlinkMediaToScanPathParameters, undefined, UnlinkMediaToScanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class UpdateMediaRequest extends RequestPatch<UpdateUserMediaPathParameters, undefined, UpdateUserMediaRequestBody, UpdateUserMediaResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"}]\n}\n\nexport class UnlinkMediaToAssetRequest extends RequestDelete<UnlinkMediaToAssetPathParameters, undefined, UnlinkMediaToAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class CreateAccountByUserIdRequest extends RequestPost<CreateAccountByUserIdPathParameters, undefined, CreateAccountByUserIdRequestBody, CreateAccountByUserIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"accounts\",\"sdkPartName\":\"accounts\"}]\n}\n\nexport class GetAccountsByUserIdRequest extends RequestGet<GetAccountsByUserIdPathParameters, GetAccountsByUserIdQueryStringParameters, GetAccountsByUserIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"accounts\",\"sdkPartName\":\"accounts\"}]\n}\n\nexport class GetUserRequest extends RequestGet<GetUserPathParameters, undefined, GetUserResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class GetInvitationsByUserIdRequest extends RequestGet<GetInvitationsByUserIdPathParameters, GetInvitationsByUserIdQueryStringParameters, GetInvitationsByUserIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"invitations\",\"sdkPartName\":\"invitations\"}]\n}\n\nexport class GetUserSettingsByUserIdRequest extends RequestGet<GetUserSettingsPathParameters, undefined, GetUserSettingsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"parm\":\"path\",\"routePart\":\"path\",\"sdkPartName\":\"path\"},{\"routePart\":\"settings\",\"sdkPartName\":\"settings\"}]\n}\n\nexport class GetErrorsByUserIdRequest extends RequestGet<GetErrorsByUserIdPathParameters, GetErrorsByUserIdQueryStringParameters, GetErrorsByUserIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"errors\",\"sdkPartName\":\"errors\"}]\n}\n\nexport class DeletePrintStickerTemplateRequest extends RequestDelete<DeletePrintStickerTemplatePathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printStickerTemplateId\",\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplate\"}]\n}\n\nexport class GetPrintStickerTemplateRequest extends RequestGet<GetPrintStickerTemplatePathParameters, undefined, GetPrintStickerTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printStickerTemplateId\",\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplate\"}]\n}\n\nexport class SetUserSettingsByUserIdRequest extends RequestPatch<SetUserSettingsPathParameters, undefined, SetUserSettingsRequestBody, SetUserSettingsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"parm\":\"path\",\"routePart\":\"path\",\"sdkPartName\":\"path\"},{\"routePart\":\"settings\",\"sdkPartName\":\"settings\"}]\n}\n\nexport class UpdateUserRequest extends RequestPatch<UpdateUserPathParameters, undefined, UpdateUserRequestBody, UpdateUserResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class DeleteQrCodeStylingTemplateByStylingTemplateIdRequest extends RequestDelete<DeleteStylingTemplateByStylingTemplateIdPathParameters, undefined, DeleteStylingTemplateByStylingTemplateIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"stylingTemplateId\",\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplate\"}]\n}\n\nexport class UpdatePrintPageTemplateRequest extends RequestPatch<UpdatePrintPageTemplatePathParameters, undefined, UpdatePrintPageTemplateRequestBody, UpdatePrintPageTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printPageTemplateId\",\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplate\"}]\n}\n\nexport class UpdateQrCodeStylingTemplateByStylingTemplateIdRequest extends RequestPatch<UpdateStylingTemplateByStylingTemplateIdPathParameters, undefined, UpdateStylingTemplateByStylingTemplateIdRequestBody, UpdateStylingTemplateByStylingTemplateIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"stylingTemplateId\",\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplate\"}]\n}\n\nexport class GetPrintPageTemplateRequest extends RequestGet<GetPrintPageTemplatePathParameters, undefined, GetPrintPageTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printPageTemplateId\",\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplate\"}]\n}\n\nexport class GetQrCodeStylingTemplateByStylingTemplateIdRequest extends RequestGet<GetStylingTemplateByStylingTemplateIdPathParameters, undefined, GetStylingTemplateByStylingTemplateIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"stylingTemplateId\",\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplate\"}]\n}\n\nexport class GetScanRequest extends RequestGet<GetScanPathParameters, GetScanQueryStringParameters, GetScanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class SaveGeolocationByScanIdRequest extends RequestPatch<SaveGeolocationByScanIdPathParameters, undefined, SaveGeolocationByScanIdRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class CreateContactByScanIdRequest extends RequestPost<CreateContactByScanIdPathParameters, undefined, CreateContactByScanIdRequestBody, CreateContactByScanIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class DeletePrintPageTemplateRequest extends RequestDelete<DeletePrintPageTemplatePathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printPageTemplateId\",\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplate\"}]\n}\n\nexport class UpdateScanCustomAttributeRequest extends RequestPatch<UpdateScanCustomAttributePathParameters, undefined, UpdateScanCustomAttributeRequestBody, UpdateScanCustomAttributeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"},{\"routePart\":\"customAttribute\",\"sdkPartName\":\"customAttribute\"}]\n}\n\nexport class GetUserRolesRequest extends RequestGet<undefined, undefined, GetUserRolesResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"userroles\",\"sdkPartName\":\"userroles\"}]\n}\n\nexport class UpdatePrintStickerTemplateRequest extends RequestPatch<UpdatePrintStickerTemplatePathParameters, undefined, UpdatePrintStickerTemplateRequestBody, UpdatePrintStickerTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printStickerTemplateId\",\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplate\"}]\n}\n\nexport class GetSessionRefreshRequest extends RequestPost<undefined, undefined, undefined, GetSessionRefreshUserSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/session/refresh\",\"sdkPartName\":\"refreshAuthSession\"}]\n}\n\nexport class CreateUserRequest extends RequestPost<undefined, undefined, CreateUserRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/user\",\"sdkPartName\":\"authUser\"}]\n}\n\nexport class GetSessionRequest extends RequestPost<undefined, undefined, GetSessionRequestBody, GetSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/session\",\"sdkPartName\":\"authSession\"}]\n}\n\nexport class CheckSessionRequest extends RequestGet<undefined, undefined, CheckSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/session\",\"sdkPartName\":\"authSession\"}]\n}\n\nexport class ChangePasswordRequest extends RequestPost<undefined, undefined, ChangePasswordRequestBody, ChangePasswordResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/user/password\",\"sdkPartName\":\"passwordAuthUser\"}]\n}\n\nexport class DeleteSessionRequest extends RequestDelete<undefined, undefined, DeleteSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/session\",\"sdkPartName\":\"authSession\"}]\n}\n\nexport class ResetPasswordRequest extends RequestPost<undefined, undefined, ResetPasswordRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/user/reset\",\"sdkPartName\":\"resetAuthUser\"}]\n}\n\nexport class ResendConfirmationRequest extends RequestPost<undefined, undefined, ResendConfirmationRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/user/confirmation\",\"sdkPartName\":\"confirmationAuthUser\"}]\n}\n\nexport class DeleteMediaRequest extends RequestDelete<DeleteUserMediaPathParameters, undefined, DeleteUserMediaResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"}]\n}\n\n// HANDLER RESOURCE CLASSES\n\nexport class SdkApikeySecretResources extends Resources {\n\n async update(options?: any): Promise<ResetApiKeySecretResponseBody> {\n const request = new ResetApiKeySecretRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetApiKeySecretResponseBody> {\n const request = new GetApiKeySecretRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkApikeyResource extends Resource {\n\n secret(): SdkApikeySecretResources {\n return new SdkApikeySecretResources(this.getSession(), this.pathParameters)\n }\n\n async update(requestBody: UpdateApiKeyRequestBody, options?: any): Promise<UpdateApiKeyResponseBody> {\n const request = new UpdateApiKeyRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetApiKeyResponseBody> {\n const request = new GetApiKeyRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAppAccountLoadResources extends Resources {\n\n async create(options?: any): Promise<LoadAppResponseBody> {\n const request = new LoadAppRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAppAccountResource extends Resource {\n\n load(): SdkAppAccountLoadResources {\n return new SdkAppAccountLoadResources(this.getSession(), this.pathParameters)\n }\n\n}\n\nexport class SdkAppResource extends Resource {\n\n account(accountId: string): SdkAppAccountResource {\n return new SdkAppAccountResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n async get(options?: any): Promise<GetAppByAppIdResponseBody> {\n const request = new GetAppByAppIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAppByAppIdRequestBody, options?: any): Promise<UpdateAppByAppIdResponseBody> {\n const request = new UpdateAppByAppIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAppsPublishedResources extends Resources {\n\n async get(queryStringParameters: GetPublishedAppsQueryStringParameters, options?: any): Promise<GetPublishedAppsResponseBody> {\n const request = new GetPublishedAppsRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAppsResources extends Resources {\n\n async get(queryStringParameters: GetAppsQueryStringParameters, options?: any): Promise<GetAppsResponseBody> {\n const request = new GetAppsRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAppsAccountMainResources extends Resources {\n\n async get(options?: any): Promise<GetMainAccountByAppAccountIdResponseBody> {\n const request = new GetMainAccountByAppAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAppsAccountResource extends Resource {\n\n main(): SdkAppsAccountMainResources {\n return new SdkAppsAccountMainResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetAppAccountResponseBody> {\n const request = new GetAppAccountByAppAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAssettypeAssetResource extends Resource {\n\n async create(requestBody: ComposeAssetByAssetTypeRequestBody, options?: any): Promise<ComposeAssetByAssetTypeResponseBody> {\n const request = new ComposeAssetByAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssettypeAssetsResources extends Resources {\n\n async create(requestBody: CreateAssetByAssetTypeRequestBody, options?: any): Promise<CreateAssetByAssetTypeResponseBody> {\n const request = new CreateAssetByAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetsByAssetTypeQueryStringParameters, options?: any): Promise<GetAssetsByAssetTypeResponseBody> {\n const request = new GetAssetsByAssetTypeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssettypeLocationsResources extends Resources {\n\n async get(queryStringParameters: GetLocationCountsForAssetTypeQueryStringParameters, options?: any): Promise<GetLocationCountsForAssetTypeResponseBody> {\n const request = new GetAssetTypeCountsByLocationRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssettypeLocationResource extends Resource {\n\n async update(requestBody: UpdateAssetTypeCountAtLocationRequestBody, options?: any): Promise<UpdateAssetTypeCountAtLocationResponseBody> {\n const request = new UpdateAssetTypeCountAtLocationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetAssetTypeCountAtLocationResponseBody> {\n const request = new GetAssetTypeCountAtLocationRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAssettypeResource extends Resource {\n\n asset(assetId: string): SdkAssettypeAssetResource {\n return new SdkAssettypeAssetResource(this.getSession(), {...this.pathParameters, assetId})\n }\n\n assets(): SdkAssettypeAssetsResources {\n return new SdkAssettypeAssetsResources(this.getSession(), this.pathParameters)\n }\n\n locations(): SdkAssettypeLocationsResources {\n return new SdkAssettypeLocationsResources(this.getSession(), this.pathParameters)\n }\n\n location(locationId: string): SdkAssettypeLocationResource {\n return new SdkAssettypeLocationResource(this.getSession(), {...this.pathParameters, locationId})\n }\n\n async delete(options?: any): Promise<DeleteAssetTypeResponseBody> {\n const request = new DeleteAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(queryStringParameters: GetAssetTypeByAssetTypeIdQueryStringParameters, options?: any): Promise<GetAssetTypeByAssetTypeIdResponseBody> {\n const request = new GetAssetTypeByAssetTypeIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateAssetTypeRequestBody, options?: any): Promise<UpdateAssetTypeResponseBody> {\n const request = new UpdateAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetContactsResources extends Resources {\n\n async create(requestBody: CreateContactByAssetIdRequestBody, options?: any): Promise<CreateContactByAssetIdResponseBody> {\n const request = new CreateContactByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetContactsByAssetIdQueryStringParameters, options?: any): Promise<GetContactsByAssetIdResponseBody> {\n const request = new GetContactsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetQrCodesResources extends Resources {\n\n async create(requestBody: CreateQrCodeByAssetIdRequestBody, options?: any): Promise<CreateQrCodeByAssetIdResponseBody> {\n const request = new CreateQrCodeByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQrCodesByAssetIdQueryStringParameters, options?: any): Promise<GetQrCodesByAssetIdResponseBody> {\n const request = new GetQrCodesByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetNeighborsResources extends Resources {\n\n async create(requestBody: CreateNeighborsByAssetIdRequestBody, options?: any): Promise<any> {\n const request = new CreateNeighborsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetNeighborsByAssetIdQueryStringParameters, options?: any): Promise<GetNeighborsByAssetIdResponseBody> {\n const request = new GetNeighborsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetQracodesResources extends Resources {\n\n async create(requestBody: CreateQrCodesByAssetIdRequestBody, options?: any): Promise<CreateQrCodesByAssetIdResponseBody> {\n const request = new CreateQrCodesByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetHistoryResources extends Resources {\n\n async get(queryStringParameters: GetAssetHistoryByAssetIdQueryStringParameters, options?: any): Promise<GetAssetHistoryByAssetIdResponseBody> {\n const request = new GetAssetHistoryRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetUrlResource extends Resource {\n\n async get(queryStringParameters: GetExternalNeighborScanCountByAssetIdQueryStringParameters, options?: any): Promise<GetExternalNeighborScanCountByAssetIdResponseBody> {\n const request = new GetExternalNeighborScanCountByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetNeighborResource extends Resource {\n\n async get(queryStringParameters: GetNeighborScanCountByAssetIdQueryStringParameters, options?: any): Promise<GetNeighborScanCountByAssetIdResponseBody> {\n const request = new GetNeighborScanCountByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetScansExportResources extends Resources {\n\n async create(requestBody: GetScanExportByAssetIdRequestBody, options?: any): Promise<GetScanExportByAssetIdResponseBody> {\n const request = new GetScanExportByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetUsermediasResources extends Resources {\n\n async get(queryStringParameters: GetUserMediasByAssetIdQueryStringParameters, options?: any): Promise<GetUserMediasByAssetIdResponseBody> {\n const request = new GetUserMediasByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetScansLocationResources extends Resources {\n\n async get(queryStringParameters: GetScanLocationDataByAssetIdQueryStringParameters, options?: any): Promise<GetScanLocationDataByAssetIdResponseBody> {\n const request = new GetScanLocationDataByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetContactResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new UnlinkContactToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async create(requestBody: LinkContactToAssetRequestBody, options?: any): Promise<LinkContactToAssetResponseBody> {\n const request = new LinkContactToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetScansResources extends Resources {\n\n async get(queryStringParameters: GetScansByAssetIdQueryStringParameters, options?: any): Promise<GetScansByAssetIdResponseBody> {\n const request = new GetScansByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetNeighborsDeleteResources extends Resources {\n\n async create(requestBody: DeleteNeighborsByAssetIdRequestBody, options?: any): Promise<any> {\n const request = new DeleteNeighborsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetResource extends Resource {\n\n contacts(): SdkAssetContactsResources {\n return new SdkAssetContactsResources(this.getSession(), this.pathParameters)\n }\n\n qrCodes(): SdkAssetQrCodesResources {\n return new SdkAssetQrCodesResources(this.getSession(), this.pathParameters)\n }\n\n neighbors(): SdkAssetNeighborsResources {\n return new SdkAssetNeighborsResources(this.getSession(), this.pathParameters)\n }\n\n qracodes(): SdkAssetQracodesResources {\n return new SdkAssetQracodesResources(this.getSession(), this.pathParameters)\n }\n\n history(): SdkAssetHistoryResources {\n return new SdkAssetHistoryResources(this.getSession(), this.pathParameters)\n }\n\n url(url: string): SdkAssetUrlResource {\n return new SdkAssetUrlResource(this.getSession(), {...this.pathParameters, url})\n }\n\n neighbor(neighborId: string): SdkAssetNeighborResource {\n return new SdkAssetNeighborResource(this.getSession(), {...this.pathParameters, neighborId})\n }\n\n scansExport(): SdkAssetScansExportResources {\n return new SdkAssetScansExportResources(this.getSession(), this.pathParameters)\n }\n\n usermedias(): SdkAssetUsermediasResources {\n return new SdkAssetUsermediasResources(this.getSession(), this.pathParameters)\n }\n\n scansLocation(): SdkAssetScansLocationResources {\n return new SdkAssetScansLocationResources(this.getSession(), this.pathParameters)\n }\n\n contact(contactId: string): SdkAssetContactResource {\n return new SdkAssetContactResource(this.getSession(), {...this.pathParameters, contactId})\n }\n\n scans(): SdkAssetScansResources {\n return new SdkAssetScansResources(this.getSession(), this.pathParameters)\n }\n\n neighborsDelete(): SdkAssetNeighborsDeleteResources {\n return new SdkAssetNeighborsDeleteResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<DeleteAssetResponseBody> {\n const request = new DeleteAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(queryStringParameters: GetAssetQueryStringParameters, options?: any): Promise<GetAssetResponseBody> {\n const request = new NameRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateAssetRequestBody, options?: any): Promise<UpdateAssetResponseBody> {\n const request = new UpdateAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountUserConfirmResources extends Resources {\n\n async get(options?: any): Promise<CheckAccountAccessResponseBody> {\n const request = new GetAccountAccessDataRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountUserRolesResources extends Resources {\n\n async get(options?: any): Promise<GetUsersRolesByAccountIdResponseBody> {\n const request = new GetUsersRolesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUsersRolesByAccountIdRequestBody, options?: any): Promise<UpdateUsersRolesByAccountIdResponseBody> {\n const request = new UpdateUsersRolesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountUserResource extends Resource {\n\n confirm(): SdkAccountUserConfirmResources {\n return new SdkAccountUserConfirmResources(this.getSession(), this.pathParameters)\n }\n\n roles(): SdkAccountUserRolesResources {\n return new SdkAccountUserRolesResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteUserByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetUserByAccountIdResponseBody> {\n const request = new GetUserByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUserByAccountIdRequestBody, options?: any): Promise<UpdateUserByAccountIdResponseBody> {\n const request = new UpdateUserByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountAssettypesResources extends Resources {\n\n async create(requestBody: CreateAssetTypeByAccountIdRequestBody, options?: any): Promise<CreateAssetTypeByAccountIdResponseBody> {\n const request = new CreateAssetTypeByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetTypesByAccountIdQueryStringParameters, options?: any): Promise<GetAssetTypesByAccountIdResponseBody> {\n const request = new GetAssetTypesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountApikeysResources extends Resources {\n\n async create(requestBody: CreateApiKeyByAccountIdRequestBody, options?: any): Promise<CreateApiKeyByAccountIdResponseBody> {\n const request = new CreateApiKeyByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetApiKeysByAccountIdQueryStringParameters, options?: any): Promise<GetApiKeysByAccountIdResponseBody> {\n const request = new GetApiKeysByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUrlSafetiesResources extends Resources {\n\n async create(requestBody: CheckUrlSafetyByAccountIdRequestBody, options?: any): Promise<CheckUrlSafetyByAccountIdResponseBody> {\n const request = new CheckUrlSafetyByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountInvitationsResources extends Resources {\n\n async create(requestBody: CreateInvitationByAccountIdRequestBody, options?: any): Promise<CreateInvitationByAccountIdResponseBody> {\n const request = new CreateInvitationByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountInvitationsBatchResources extends Resources {\n\n async create(requestBody: CreateInvitationsByAccountIdRequestBody, options?: any): Promise<CreateInvitationsByAccountIdResponseBody> {\n const request = new CreateInvitationsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountPrintPageTemplatesResources extends Resources {\n\n async create(requestBody: CreatePrintPageTemplateByAccountIdRequestBody, options?: any): Promise<CreatePrintPageTemplateByAccountIdResponseBody> {\n const request = new CreatePrintPageTemplateByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetPrintPageTemplatesByAccountIdQueryStringParameters, options?: any): Promise<GetPrintPageTemplatesByAccountIdResponseBody> {\n const request = new GetPrintPageTemplatesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountLocationsResources extends Resources {\n\n async create(requestBody: CreateLocationByAccountIdRequestBody, options?: any): Promise<CreateLocationByAccountIdResponseBody> {\n const request = new CreateLocationByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetLocationsByAccountIdQueryStringParameters, options?: any): Promise<GetLocationsByAccountIdResponseBody> {\n const request = new GetLocationsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountQrcodelogosResources extends Resources {\n\n async create(requestBody: CreateQrCodeLogoByAccountIdRequestBody, options?: any): Promise<CreateQrCodeLogoByAccountIdResponseBody> {\n const request = new CreateQrCodeLogoByAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQrCodeLogosByAccountIdQueryStringParameters, options?: any): Promise<GetQrCodeLogosByAccountIdResponseBody> {\n const request = new GetQrCodeLogosByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountImageUploadResources extends Resources {\n\n async create(requestBody: CreateImageUploadPresignedRequestBody, options?: any): Promise<CreateImageUploadPresignedResponseBody> {\n const request = new CreateImageUploadPresignedUrlRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountProjectsResources extends Resources {\n\n async create(requestBody: CreateProjectByAccountIdRequestBody, options?: any): Promise<CreateProjectByAccountIdResponseBody> {\n const request = new CreateProjectByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetProjectsByAccountIdQueryStringParameters, options?: any): Promise<GetProjectsByAccountIdResponseBody> {\n const request = new GetProjectsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountCustomattributesResources extends Resources {\n\n async create(requestBody: CreateQueryableCustomAttributeByAccountIdRequestBody, options?: any): Promise<CreateQueryableCustomAttributeByAccountIdResponseBody> {\n const request = new CreateQueryableCustomAttributeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQueryableCustomAttributesByAccountIdQueryStringParameters, options?: any): Promise<GetQueryableCustomAttributesByAccountIdResponseBody> {\n const request = new GetQueryableCustomAttributeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUsermediasPresignedurlmultipartResources extends Resources {\n\n async create(requestBody: CreateUserMediaMultipartPresignedUrlByAccountIdRequestBody, options?: any): Promise<CreateUserMediaMultipartPresignedUrlByAccountIdResponseBody> {\n const request = new CreateUserMediaMultipartPresignedUrlByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountAppsResources extends Resources {\n\n async create(requestBody: CreateAppByAccountIdRequestBody, options?: any): Promise<CreateAppByAccountIdResponseBody> {\n const request = new CreateAppRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetInstalledAppsByAccountIdQueryStringParameters, options?: any): Promise<GetInstalledAppsByAccountIdResponseBody> {\n const request = new GetInstalledAppsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountStylingtemplatesResources extends Resources {\n\n async create(requestBody: CreateQrCodeStylingTemplateByAccountIdRequestBody, options?: any): Promise<CreateQrCodeStylingTemplateByAccountIdResponseBody> {\n const request = new CreateQrCodeStylingTemplateByAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQrCodeStylingTemplatesByAccountIdQueryStringParameters, options?: any): Promise<GetQrCodeStylingTemplatesByAccountIdResponseBody> {\n const request = new GetQrCodeStylingTemplatesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountZendeskTicketResources extends Resources {\n\n async create(requestBody: CreateTicketByAccountIdRequestBody, options?: any): Promise<any> {\n const request = new CreateTicketByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountContactsBatchResources extends Resources {\n\n async delete(queryStringParameters: DeleteContactsByAccountIdQueryStringParameters, options?: any): Promise<DeleteContactsByAccountIdResponseBody> {\n const request = new DeleteContactsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountCustomDomainResource extends Resource {\n\n async get(options?: any): Promise<GetAccountDomainResponseBody> {\n const request = new GetCustomDomainRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountPrintStickerTemplatesResources extends Resources {\n\n async create(requestBody: CreatePrintStickerTemplateByAccountIdRequestBody, options?: any): Promise<CreatePrintStickerTemplateByAccountIdResponseBody> {\n const request = new CreatePrintStickerTemplateByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetPrintStickerTemplatesByAccountIdQueryStringParameters, options?: any): Promise<GetPrintStickerTemplatesByAccountIdResponseBody> {\n const request = new GetPrintStickerTemplatesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUsermediasPresignedurlResources extends Resources {\n\n async create(requestBody: CreateUserMediaPresignedUrlByAccountIdRequestBody, options?: any): Promise<CreateUserMediaPresignedUrlByAccountIdResponseBody> {\n const request = new CreateUserMediaPresignedUrlByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountAdvancedAssetsReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedAssetReportByAccountIdQueryStringParameters, options?: any): Promise<GetAdvancedAssetReportByAccountIdResponseBody> {\n const request = new GetAdvancedAssetReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAdvancedScansReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedScanReportByAccountIdQueryStringParameters, options?: any): Promise<GetAdvancedScanReportByAccountIdResponseBody> {\n const request = new GetAdvancedScanReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAdvancedContactsReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedContactReportByAccountIdQueryStringParameters, options?: any): Promise<GetAdvancedContactReportByAccountIdResponseBody> {\n const request = new GetAdvancedContactReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountOwnerAppsResources extends Resources {\n\n async get(queryStringParameters: GetAllAppsByAccountIdQueryStringParameters, options?: any): Promise<GetAllAppsByAccountIdResponseBody> {\n const request = new GetAllAppsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAssetgraphsResources extends Resources {\n\n async get(queryStringParameters: GetAssetGraphsByAccountIdQueryStringParameters, options?: any): Promise<GetAssetGraphsByAccountIdResponseBody> {\n const request = new GetAssetGraphsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAssetsExportResources extends Resources {\n\n async create(requestBody: GetAssetExportByAccountIdRequestBody, options?: any): Promise<GetAssetExportByAccountIdResponseBody> {\n const request = new GetAssetExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountAssetsResources extends Resources {\n\n async get(queryStringParameters: GetAssetsByAccountIdQueryStringParameters, options?: any): Promise<GetAssetsByAccountIdResponseBody> {\n const request = new GetAssetsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountBasicAssetsReportResources extends Resources {\n\n async get(options?: any): Promise<GetBasicAssetReportByAccountIdResponseBody> {\n const request = new GetBasicAssetReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountBasicContactsReportResources extends Resources {\n\n async get(options?: any): Promise<GetBasicContactReportByAccountIdResponseBody> {\n const request = new GetBasicContactReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountBatchResources extends Resources {\n\n async get(queryStringParameters: GetBatchesByAccountIdQueryStringParameters, options?: any): Promise<GetBatchesByAccountIdResponseBody> {\n const request = new GetBatchesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountConsentResources extends Resources {\n\n async get(queryStringParameters: GetConsentByAccountIdQueryStringParameters, options?: any): Promise<GetConsentByAccountIdResponseBody> {\n const request = new GetConsentByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountContactsResources extends Resources {\n\n async get(queryStringParameters: GetContactsByAccountIdQueryStringParameters, options?: any): Promise<GetContactsByAccountIdResponseBody> {\n const request = new GetContactsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountJobsResources extends Resources {\n\n async get(queryStringParameters: GetJobsByAccountIdQueryStringParameters, options?: any): Promise<GetJobsByAccountIdResponseBody> {\n const request = new GetJobsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountCustomDomainsResources extends Resources {\n\n async get(queryStringParameters: GetDomainsByAccountIdQueryStringParameters, options?: any): Promise<GetDomainsByAccountIdResponseBody> {\n const request = new GetDomainsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountContactsExportResources extends Resources {\n\n async create(requestBody: GetContactExportByAccountIdRequestBody, options?: any): Promise<GetContactExportByAccountIdResponseBody> {\n const request = new GetContactExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountAssetsMostscannedResources extends Resources {\n\n async get(queryStringParameters: GetMostScannedAssetsByAccountIdQueryStringParameters, options?: any): Promise<GetMostScannedAssetsByAccountIdResponseBody> {\n const request = new GetMostScannedAssetsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountPluginsResources extends Resources {\n\n async get(options?: any): Promise<GetPluginsByAccountIdResponseBody> {\n const request = new GetPluginsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountPrintJobsResources extends Resources {\n\n async get(queryStringParameters: GetPrintJobsByAccountIdQueryStringParameters, options?: any): Promise<GetPrintJobsByAccountIdResponseBody> {\n const request = new GetPrintJobsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountPricePlanResources extends Resources {\n\n async get(options?: any): Promise<GetPricePlanByAccountIdResponseBody> {\n const request = new GetPricePlanByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdatePricePlanByAccountIdRequestBody, options?: any): Promise<UpdatePricePlanByAccountIdResponseBody> {\n const request = new UpdatePricePlanByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountProjectsExportResources extends Resources {\n\n async create(requestBody: GetProjectExportByAccountIdRequestBody, options?: any): Promise<GetProjectExportByAccountIdResponseBody> {\n const request = new GetProjectExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountQrCodesResources extends Resources {\n\n async get(queryStringParameters: GetQrCodesByAccountIdQueryStringParameters, options?: any): Promise<GetQrCodesByAccountIdResponseBody> {\n const request = new GetQrCodesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAssetsScansResources extends Resources {\n\n async create(queryStringParameters: GetAssetsScanCountByAccountIdQueryStringParameters, requestBody: GetAssetsScanCountByAccountIdRequestBody, options?: any): Promise<GetAssetsScanCountByAccountIdResponseBody> {\n const request = new GetAssetsScanCountByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, requestBody, options)\n }\n\n}\n\nexport class SdkAccountUsersResources extends Resources {\n\n async get(queryStringParameters: GetUsersByAccountIdQueryStringParameters, options?: any): Promise<GetUsersByAccountIdResponseBody> {\n const request = new GetUsersByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountScansTimelineResources extends Resources {\n\n async get(queryStringParameters: GetScanTimelineByAccountIdQueryStringParameters, options?: any): Promise<GetScanTimelineByAccountIdResponseBody> {\n const request = new GetScanTimelineByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountScansDayofweekResources extends Resources {\n\n async get(queryStringParameters: GetScanDayOfWeekByAccountIdQueryStringParameters, options?: any): Promise<GetScanDayOfWeekByAccountIdResponseBody> {\n const request = new GetScanDayOfWeekByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUsermediasResources extends Resources {\n\n async get(queryStringParameters: GetUserMediasByAccountIdQueryStringParameters, options?: any): Promise<GetUserMediasByAccountIdResponseBody> {\n const request = new GetUserMediasByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountScansExportResources extends Resources {\n\n async create(requestBody: GetScanExportByAccountIdRequestBody, options?: any): Promise<GetScanExportByAccountIdResponseBody> {\n const request = new GetScanExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountScansResources extends Resources {\n\n async get(queryStringParameters: GetScansByAccountIdQueryStringParameters, options?: any): Promise<GetScansByAccountIdResponseBody> {\n const request = new GetScansByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAppInstallResources extends Resources {\n\n async create(options?: any): Promise<InstallAppToAccountResponseBody> {\n const request = new InstallAppToAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountAppResource extends Resource {\n\n install(): SdkAccountAppInstallResources {\n return new SdkAccountAppInstallResources(this.getSession(), this.pathParameters)\n }\n\n}\n\nexport class SdkAccountClockResources extends Resources {\n\n async create(requestBody: StripeClockRequestBody, options?: any): Promise<StripeClockResponseBody> {\n const request = new AdvanceStripeClockByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountEngagePricePlanResources extends Resources {\n\n async update(requestBody: UpdatePricePlanRequestBody, options?: any): Promise<UpdatePricePlanResponseBody> {\n const request = new UpdateEngagePricePlanRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountCampaignInformationResources extends Resources {\n\n async create(requestBody: SendCampaignInformationByAccountIdRequestBody, options?: any): Promise<SendCampaignInformationByAccountIdResponseBody> {\n const request = new CreateCampaignAccountByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<RetrieveCampaignStatusByAccountIdResponseBody> {\n const request = new RetrieveCampaignStatusByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountQrcodelogosUploadResources extends Resources {\n\n async create(requestBody: UploadQrCodeLogoByAccountIdRequestBody, options?: any): Promise<UploadQrCodeLogoByAccountIdResponseBody> {\n const request = new UploadQrCodeLogoByAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountScansTimeofdayResources extends Resources {\n\n async get(queryStringParameters: GetScanTimeOfDayByAccountIdQueryStringParameters, options?: any): Promise<GetScanTimeOfDayByAccountIdResponseBody> {\n const request = new GetScanTimeOfDayByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountResource extends Resource {\n\n user(userId: string): SdkAccountUserResource {\n return new SdkAccountUserResource(this.getSession(), {...this.pathParameters, userId})\n }\n\n assettypes(): SdkAccountAssettypesResources {\n return new SdkAccountAssettypesResources(this.getSession(), this.pathParameters)\n }\n\n apikeys(): SdkAccountApikeysResources {\n return new SdkAccountApikeysResources(this.getSession(), this.pathParameters)\n }\n\n urlSafeties(): SdkAccountUrlSafetiesResources {\n return new SdkAccountUrlSafetiesResources(this.getSession(), this.pathParameters)\n }\n\n invitations(): SdkAccountInvitationsResources {\n return new SdkAccountInvitationsResources(this.getSession(), this.pathParameters)\n }\n\n invitationsBatch(): SdkAccountInvitationsBatchResources {\n return new SdkAccountInvitationsBatchResources(this.getSession(), this.pathParameters)\n }\n\n printPageTemplates(): SdkAccountPrintPageTemplatesResources {\n return new SdkAccountPrintPageTemplatesResources(this.getSession(), this.pathParameters)\n }\n\n locations(): SdkAccountLocationsResources {\n return new SdkAccountLocationsResources(this.getSession(), this.pathParameters)\n }\n\n qrcodelogos(): SdkAccountQrcodelogosResources {\n return new SdkAccountQrcodelogosResources(this.getSession(), this.pathParameters)\n }\n\n imageUpload(): SdkAccountImageUploadResources {\n return new SdkAccountImageUploadResources(this.getSession(), this.pathParameters)\n }\n\n projects(): SdkAccountProjectsResources {\n return new SdkAccountProjectsResources(this.getSession(), this.pathParameters)\n }\n\n customattributes(): SdkAccountCustomattributesResources {\n return new SdkAccountCustomattributesResources(this.getSession(), this.pathParameters)\n }\n\n usermediasPresignedurlmultipart(): SdkAccountUsermediasPresignedurlmultipartResources {\n return new SdkAccountUsermediasPresignedurlmultipartResources(this.getSession(), this.pathParameters)\n }\n\n apps(): SdkAccountAppsResources {\n return new SdkAccountAppsResources(this.getSession(), this.pathParameters)\n }\n\n stylingtemplates(): SdkAccountStylingtemplatesResources {\n return new SdkAccountStylingtemplatesResources(this.getSession(), this.pathParameters)\n }\n\n zendeskTicket(): SdkAccountZendeskTicketResources {\n return new SdkAccountZendeskTicketResources(this.getSession(), this.pathParameters)\n }\n\n contactsBatch(): SdkAccountContactsBatchResources {\n return new SdkAccountContactsBatchResources(this.getSession(), this.pathParameters)\n }\n\n customDomain(customDomain: string): SdkAccountCustomDomainResource {\n return new SdkAccountCustomDomainResource(this.getSession(), {...this.pathParameters, customDomain})\n }\n\n printStickerTemplates(): SdkAccountPrintStickerTemplatesResources {\n return new SdkAccountPrintStickerTemplatesResources(this.getSession(), this.pathParameters)\n }\n\n usermediasPresignedurl(): SdkAccountUsermediasPresignedurlResources {\n return new SdkAccountUsermediasPresignedurlResources(this.getSession(), this.pathParameters)\n }\n\n advancedAssetsReport(): SdkAccountAdvancedAssetsReportResources {\n return new SdkAccountAdvancedAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedScansReport(): SdkAccountAdvancedScansReportResources {\n return new SdkAccountAdvancedScansReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedContactsReport(): SdkAccountAdvancedContactsReportResources {\n return new SdkAccountAdvancedContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n ownerApps(): SdkAccountOwnerAppsResources {\n return new SdkAccountOwnerAppsResources(this.getSession(), this.pathParameters)\n }\n\n assetgraphs(): SdkAccountAssetgraphsResources {\n return new SdkAccountAssetgraphsResources(this.getSession(), this.pathParameters)\n }\n\n assetsExport(): SdkAccountAssetsExportResources {\n return new SdkAccountAssetsExportResources(this.getSession(), this.pathParameters)\n }\n\n assets(): SdkAccountAssetsResources {\n return new SdkAccountAssetsResources(this.getSession(), this.pathParameters)\n }\n\n basicAssetsReport(): SdkAccountBasicAssetsReportResources {\n return new SdkAccountBasicAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n basicContactsReport(): SdkAccountBasicContactsReportResources {\n return new SdkAccountBasicContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n batch(): SdkAccountBatchResources {\n return new SdkAccountBatchResources(this.getSession(), this.pathParameters)\n }\n\n consent(): SdkAccountConsentResources {\n return new SdkAccountConsentResources(this.getSession(), this.pathParameters)\n }\n\n contacts(): SdkAccountContactsResources {\n return new SdkAccountContactsResources(this.getSession(), this.pathParameters)\n }\n\n jobs(): SdkAccountJobsResources {\n return new SdkAccountJobsResources(this.getSession(), this.pathParameters)\n }\n\n customDomains(): SdkAccountCustomDomainsResources {\n return new SdkAccountCustomDomainsResources(this.getSession(), this.pathParameters)\n }\n\n contactsExport(): SdkAccountContactsExportResources {\n return new SdkAccountContactsExportResources(this.getSession(), this.pathParameters)\n }\n\n assetsMostscanned(): SdkAccountAssetsMostscannedResources {\n return new SdkAccountAssetsMostscannedResources(this.getSession(), this.pathParameters)\n }\n\n plugins(): SdkAccountPluginsResources {\n return new SdkAccountPluginsResources(this.getSession(), this.pathParameters)\n }\n\n printJobs(): SdkAccountPrintJobsResources {\n return new SdkAccountPrintJobsResources(this.getSession(), this.pathParameters)\n }\n\n pricePlan(): SdkAccountPricePlanResources {\n return new SdkAccountPricePlanResources(this.getSession(), this.pathParameters)\n }\n\n projectsExport(): SdkAccountProjectsExportResources {\n return new SdkAccountProjectsExportResources(this.getSession(), this.pathParameters)\n }\n\n qrCodes(): SdkAccountQrCodesResources {\n return new SdkAccountQrCodesResources(this.getSession(), this.pathParameters)\n }\n\n assetsScans(): SdkAccountAssetsScansResources {\n return new SdkAccountAssetsScansResources(this.getSession(), this.pathParameters)\n }\n\n users(): SdkAccountUsersResources {\n return new SdkAccountUsersResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeline(): SdkAccountScansTimelineResources {\n return new SdkAccountScansTimelineResources(this.getSession(), this.pathParameters)\n }\n\n scansDayofweek(): SdkAccountScansDayofweekResources {\n return new SdkAccountScansDayofweekResources(this.getSession(), this.pathParameters)\n }\n\n usermedias(): SdkAccountUsermediasResources {\n return new SdkAccountUsermediasResources(this.getSession(), this.pathParameters)\n }\n\n scansExport(): SdkAccountScansExportResources {\n return new SdkAccountScansExportResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkAccountScansResources {\n return new SdkAccountScansResources(this.getSession(), this.pathParameters)\n }\n\n app(appId: string): SdkAccountAppResource {\n return new SdkAccountAppResource(this.getSession(), {...this.pathParameters, appId})\n }\n\n clock(): SdkAccountClockResources {\n return new SdkAccountClockResources(this.getSession(), this.pathParameters)\n }\n\n engagePricePlan(): SdkAccountEngagePricePlanResources {\n return new SdkAccountEngagePricePlanResources(this.getSession(), this.pathParameters)\n }\n\n campaignInformation(): SdkAccountCampaignInformationResources {\n return new SdkAccountCampaignInformationResources(this.getSession(), this.pathParameters)\n }\n\n qrcodelogosUpload(): SdkAccountQrcodelogosUploadResources {\n return new SdkAccountQrcodelogosUploadResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeofday(): SdkAccountScansTimeofdayResources {\n return new SdkAccountScansTimeofdayResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetAccountResponseBody> {\n const request = new GetAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAccountRequestBody, options?: any): Promise<UpdateAccountResponseBody> {\n const request = new UpdateAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkBatchAssetsResources extends Resources {\n\n async get(queryStringParameters: GetAssetsByBatchIdQueryStringParameters, options?: any): Promise<GetAssetsByBatchIdResponseBody> {\n const request = new GetAssetsByBatchIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkBatchResource extends Resource {\n\n assets(): SdkBatchAssetsResources {\n return new SdkBatchAssetsResources(this.getSession(), this.pathParameters)\n }\n\n}\n\nexport class SdkUpgradePlanBillingPreviewResource extends Resource {\n\n async get(queryStringParameters: ChangeSubscriptionPreviewQueryStringParameters, options?: any): Promise<ChangeSubscriptionPreviewResponseBody> {\n const request = new ChangeSubscriptionPreviewRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkBillingCancelDowngradeResource extends Resource {\n\n async create(options?: any): Promise<CancelDowngradeRequestResponseBody> {\n const request = new CancelDowngradeRequestRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkCareAccountsResources extends Resources {\n\n async get(queryStringParameters: GetAllAccountsQueryStringParameters, options?: any): Promise<GetAllAccountsResponseBody> {\n const request = new GetAllAccountsRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkBillingCurrentPeriodResource extends Resource {\n\n async get(options?: any): Promise<GetCurrentPeriodResponseBody> {\n const request = new GetCurrentPeriodRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkBillingSetupIntentResource extends Resource {\n\n async create(requestBody: CreateSetupIntentRequestBody, options?: any): Promise<CreateSetupIntentResponseBody> {\n const request = new CreateSetupIntentRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkBillingCancelSubscriptionResource extends Resource {\n\n async create(requestBody: CancelSubscriptionRequestBody, options?: any): Promise<CancelSubscriptionResponseBody> {\n const request = new CancelSubscriptionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkBillingInvoiceResource extends Resource {\n\n async get(queryStringParameters: GetInvoicesQueryStringParameters, options?: any): Promise<GetInvoicesResponseBody> {\n const request = new GetInvoicesRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkBillingDetailResource extends Resource {\n\n async get(options?: any): Promise<GetBillingDetailsResponseBody> {\n const request = new GetBillingDetailsRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkBillingDowngradePlanResource extends Resource {\n\n async create(requestBody: DowngradePlanRequestBody, options?: any): Promise<DowngradePlanResponseBody> {\n const request = new DowngradePlanRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkBillingUpgradePlanResource extends Resource {\n\n async create(requestBody: UpgradePlanRequestBody, options?: any): Promise<UpgradePlanResponseBody> {\n const request = new ChangeSubscriptionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkContactConsentResources extends Resources {\n\n async create(requestBody: CreateConsentByContactIdRequestBody, options?: any): Promise<CreateConsentByContactIdResponseBody> {\n const request = new CreateConsentByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetConsentByContactIdQueryStringParameters, options?: any): Promise<GetConsentByContactIdResponseBody> {\n const request = new GetConsentByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async delete(queryStringParameters: DeleteConsentByContactIdQueryStringParameters, options?: any): Promise<DeleteConsentByContactIdResponseBody> {\n const request = new DeleteConsentByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkContactAssetsResources extends Resources {\n\n async get(queryStringParameters: GetAssetsByContactIdQueryStringParameters, options?: any): Promise<GetAssetsByContactIdResponseBody> {\n const request = new GetAssetsByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkContactExportResources extends Resources {\n\n async create(requestBody: GetContactExportByContactIdRequestBody, options?: any): Promise<GetContactExportByContactIdResponseBody> {\n const request = new GetContactExportByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkContactScansExportResources extends Resources {\n\n async create(requestBody: GetScanExportByContactIdRequestBody, options?: any): Promise<GetScanExportByContactIdResponseBody> {\n const request = new GetScanExportByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkContactScansLocationResources extends Resources {\n\n async get(queryStringParameters: GetScanLocationDataByContactIdQueryStringParameters, options?: any): Promise<GetScanLocationDataByContactIdResponseBody> {\n const request = new GetScanLocationDataByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkContactScanResource extends Resource {\n\n async create(requestBody: LinkContactToScanRequestBody, options?: any): Promise<LinkContactToScanResponseBody> {\n const request = new LinkContactToScanRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkContactScansResources extends Resources {\n\n async get(options?: any): Promise<GetScansByContactIdResponseBody> {\n const request = new GetScansByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkContactResource extends Resource {\n\n consent(): SdkContactConsentResources {\n return new SdkContactConsentResources(this.getSession(), this.pathParameters)\n }\n\n assets(): SdkContactAssetsResources {\n return new SdkContactAssetsResources(this.getSession(), this.pathParameters)\n }\n\n export(): SdkContactExportResources {\n return new SdkContactExportResources(this.getSession(), this.pathParameters)\n }\n\n scansExport(): SdkContactScansExportResources {\n return new SdkContactScansExportResources(this.getSession(), this.pathParameters)\n }\n\n scansLocation(): SdkContactScansLocationResources {\n return new SdkContactScansLocationResources(this.getSession(), this.pathParameters)\n }\n\n scan(scanId: string): SdkContactScanResource {\n return new SdkContactScanResource(this.getSession(), {...this.pathParameters, scanId})\n }\n\n scans(): SdkContactScansResources {\n return new SdkContactScansResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetContactResponseBody> {\n const request = new GetContactRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateContactRequestBody, options?: any): Promise<UpdateContactResponseBody> {\n const request = new UpdateContactRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async delete(options?: any): Promise<DeleteContactResponseBody> {\n const request = new DeleteContactRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkCustomdomainRetryResources extends Resources {\n\n async create(options?: any): Promise<RetryCustomDomainResponseBody> {\n const request = new RetryCustomDomainRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkCustomdomainLocatorCollisionsResources extends Resources {\n\n async get(queryStringParameters: CheckCustomLocatorKeyRangeQueryStringParameters, options?: any): Promise<CheckCustomLocatorKeyRangeResponseBody> {\n const request = new CheckCustomLocatorKeyRangeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkCustomdomainResource extends Resource {\n\n retry(): SdkCustomdomainRetryResources {\n return new SdkCustomdomainRetryResources(this.getSession(), this.pathParameters)\n }\n\n locatorCollisions(): SdkCustomdomainLocatorCollisionsResources {\n return new SdkCustomdomainLocatorCollisionsResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteCustomDomainRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAssetgraphResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteAssetGraphRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetAssetGraphResponseBody> {\n const request = new GetAssetGraphRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAssetGraphRequestBody, options?: any): Promise<UpdateAssetGraphResponseBody> {\n const request = new UpdateAssetGraphRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkInvitationUsersResources extends Resources {\n\n async create(options?: any): Promise<CreateUserByInvitationIdResponseBody> {\n const request = new CreateUserByInvitationIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkInvitationResource extends Resource {\n\n users(): SdkInvitationUsersResources {\n return new SdkInvitationUsersResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetInvitationResponseBody> {\n const request = new GetInvitationRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<DeleteInvitationResponseBody> {\n const request = new DeleteInvitationRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkJobResource extends Resource {\n\n async delete(options?: any): Promise<DeleteJobResponseBody> {\n const request = new DeleteJobRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetJobResponseBody> {\n const request = new GetJobRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkPrintJobResource extends Resource {\n\n async update(options?: any): Promise<InvokePrintJobByJobIdResponseBody> {\n const request = new InvokePrintJobByJobIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<DeletePrintJobResponseBody> {\n const request = new DeletePrintJobRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkLocationAssetsResources extends Resources {\n\n async update(requestBody: BatchUpdateAssetLocationsRequestBody, options?: any): Promise<BatchUpdateAssetLocationsResponseBody> {\n const request = new UpdateAssetsLocationsRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetsByLocationQueryStringParameters, options?: any): Promise<GetAssetsByLocationResponseBody> {\n const request = new GetAssetsByLocationIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkLocationResource extends Resource {\n\n assets(): SdkLocationAssetsResources {\n return new SdkLocationAssetsResources(this.getSession(), this.pathParameters)\n }\n\n async update(requestBody: UpdateLocationRequestBody, options?: any): Promise<UpdateLocationResponseBody> {\n const request = new UpdateLocationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async delete(queryStringParameters: DeleteLocationQueryStringParameters, options?: any): Promise<DeleteLocationResponseBody> {\n const request = new DeleteLocationRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkQrcodelogoResource extends Resource {\n\n async get(options?: any): Promise<GetQrCodeLogoByQrCodeLogoIdResponseBody> {\n const request = new GetQrCodeLogoByQrCodeLogoIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateQrCodeLogoByQrCodeLogoIdRequestBody, options?: any): Promise<UpdateQrCodeLogoByQrCodeLogoIdResponseBody> {\n const request = new UpdateQrCodeLogoByQrCodeLogoIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkSupportResources extends Resources {\n\n async create(requestBody: SendSupportEmailRequestBody, options?: any): Promise<any> {\n const request = new SendSupportEmailRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkQrCodeLinksResources extends Resources {\n\n async create(requestBody: CreateLinkByQrCodeRequestBody, options?: any): Promise<CreateLinkByQrCodeResponseBody> {\n const request = new CreateLinkByQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetLinksByQrCodeResponseBody> {\n const request = new GetLinksByQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkQrCodeLinkResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteLinkByQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkQrCodeResource extends Resource {\n\n links(): SdkQrCodeLinksResources {\n return new SdkQrCodeLinksResources(this.getSession(), this.pathParameters)\n }\n\n link(link: string): SdkQrCodeLinkResource {\n return new SdkQrCodeLinkResource(this.getSession(), {...this.pathParameters, link})\n }\n\n async delete(options?: any): Promise<DeleteQrCodeResponseBody> {\n const request = new DeleteQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(queryStringParameters: GetQrCodeQueryStringParameters, options?: any): Promise<GetQrCodeResponseBody> {\n const request = new GetQrCodeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateQrCodeRequestBody, options?: any): Promise<UpdateQrCodeResponseBody> {\n const request = new UpdateQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkPricePlansResources extends Resources {\n\n async get(options?: any): Promise<GetPricePlansResponseBody> {\n const request = new GetPricePlansRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkQrcodelinkResource extends Resource {\n\n async get(options?: any): Promise<GetQrCodeLinkResponseBody> {\n const request = new GetQrCodeLinkRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkFileValidateResources extends Resources {\n\n async create(options?: any): Promise<ValidateFileResponseBody> {\n const request = new ValidateFileRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkFileResource extends Resource {\n\n validate(): SdkFileValidateResources {\n return new SdkFileValidateResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetFileResponseBody> {\n const request = new GetFileRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkProjectValidationJobsAssetbatchResources extends Resources {\n\n async create(requestBody: CreateAssetBatchValidationJobByProjectIdRequestBody, options?: any): Promise<CreateAssetBatchValidationJobByProjectIdResponseBody> {\n const request = new CreateAssetBatchValidationJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectAssetgraphsResources extends Resources {\n\n async create(requestBody: CreateAssetGraphByProjectIdRequestBody, options?: any): Promise<CreateAssetGraphByProjectIdResponseBody> {\n const request = new CreateAssetGraphByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetGraphsByProjectIdQueryStringParameters, options?: any): Promise<GetAssetGraphsByProjectIdResponseBody> {\n const request = new GetAssetGraphsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectContactsResources extends Resources {\n\n async create(requestBody: CreateContactByProjectIdRequestBody, options?: any): Promise<CreateContactByProjectIdResponseBody> {\n const request = new CreateContactByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetContactsByProjectIdQueryStringParameters, options?: any): Promise<GetContactsByProjectIdResponseBody> {\n const request = new GetContactsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectJobsAssetbatchResources extends Resources {\n\n async create(requestBody: CreateAssetCreationJobByProjectIdRequestBody, options?: any): Promise<CreateAssetCreationJobByProjectIdResponseBody> {\n const request = new CreateAssetCreationJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectAssetsBatchResources extends Resources {\n\n async create(requestBody: CreateAssetsByProjectIdRequestBody, options?: any): Promise<CreateAssetsByProjectIdResponseBody> {\n const request = new CreateAssetsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectContactsBatchResources extends Resources {\n\n async create(requestBody: CreateContactsByProjectIdRequestBody, options?: any): Promise<CreateContactsByProjectIdResponseBody> {\n const request = new CreateContactsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async delete(queryStringParameters: DeleteContactsByProjectIdQueryStringParameters, options?: any): Promise<DeleteContactsByProjectIdResponseBody> {\n const request = new DeleteContactsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectTemplatedPrintPreviewResources extends Resources {\n\n async create(requestBody: CreateTemplatedPrintPreviewByProjectIdRequestBody, options?: any): Promise<CreateTemplatedPrintPreviewByProjectIdResponseBody> {\n const request = new CreateTemplatedPrintPreviewByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectSelfqueueprintResources extends Resources {\n\n async create(requestBody: CreateSelfQueuePrintJobByProjectIdRequestBody, options?: any): Promise<CreateSelfQueuePrintJobByProjectIdResponseBody> {\n const request = new CreateSelfQueuePrintJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectAssetsResources extends Resources {\n\n async create(requestBody: CreateAssetByProjectIdRequestBody, options?: any): Promise<CreateAssetByProjectIdResponseBody> {\n const request = new CreateAssetByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetsByProjectIdQueryStringParameters, options?: any): Promise<GetAssetsByProjectIdResponseBody> {\n const request = new GetAssetsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectQrCodesResources extends Resources {\n\n async create(requestBody: CreateQrCodeByProjectIdRequestBody, options?: any): Promise<CreateQrCodeByProjectIdResponseBody> {\n const request = new CreateQrCodeByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQrCodesByProjectIdQueryStringParameters, options?: any): Promise<GetQrCodesByProjectIdResponseBody> {\n const request = new GetQrCodesByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectSmsTemplateResource extends Resource {\n\n async delete(options?: any): Promise<DeleteSmsTemplateResponseBody> {\n const request = new DeleteSmsTemplateByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkProjectPresignedurlJobsAssetbatchResources extends Resources {\n\n async create(requestBody: CreateAssetCreationPresignedUrlByProjectIdRequestBody, options?: any): Promise<CreateAssetCreationPresignedUrlByProjectIdResponseBody> {\n const request = new CreateAssetCreationPresignedUrlRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectPrintJobsResources extends Resources {\n\n async create(requestBody: CreateTemplatedPrintJobByProjectIdRequestBody, options?: any): Promise<CreateTemplatedPrintJobByProjectIdResponseBody> {\n const request = new CreateTemplatedPrintJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectAdvancedContactsReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedContactReportByProjectIdQueryStringParameters, options?: any): Promise<GetAdvancedContactReportByProjectIdResponseBody> {\n const request = new GetAdvancedContactReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAdvancedAssetsReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedAssetReportByProjectIdQueryStringParameters, options?: any): Promise<GetAdvancedAssetReportByProjectIdResponseBody> {\n const request = new GetAdvancedAssetReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAdvancedScansReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedScanReportByProjectIdQueryStringParameters, options?: any): Promise<GetAdvancedScanReportByProjectIdResponseBody> {\n const request = new GetAdvancedScanReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectBasicContactsReportResources extends Resources {\n\n async get(options?: any): Promise<GetBasicContactReportByProjectIdResponseBody> {\n const request = new GetBasicContactReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkProjectBasicAssetsReportResources extends Resources {\n\n async get(options?: any): Promise<GetBasicAssetReportByProjectIdResponseBody> {\n const request = new GetBasicAssetReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkProjectConsentResources extends Resources {\n\n async get(queryStringParameters: GetConsentByProjectIdQueryStringParameters, options?: any): Promise<GetConsentByProjectIdResponseBody> {\n const request = new GetConsentByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAssetsExportResources extends Resources {\n\n async create(requestBody: GetAssetExportByProjectIdRequestBody, options?: any): Promise<GetAssetExportByProjectIdResponseBody> {\n const request = new GetAssetExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectSmsTemplatesResources extends Resources {\n\n async create(requestBody: CreateSmsTemplateByProjectIdRequestBody, options?: any): Promise<CreateSmsTemplateByProjectIdResponseBody> {\n const request = new CreateSmsTemplateByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectContactsExportResources extends Resources {\n\n async create(requestBody: GetContactExportByProjectIdRequestBody, options?: any): Promise<GetContactExportByProjectIdResponseBody> {\n const request = new GetContactExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectScansExportResources extends Resources {\n\n async create(requestBody: GetScanExportByProjectIdRequestBody, options?: any): Promise<GetScanExportByProjectIdResponseBody> {\n const request = new GetScanExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectScansDayofweekResources extends Resources {\n\n async get(queryStringParameters: GetScanDayOfWeekByProjectIdQueryStringParameters, options?: any): Promise<GetScanDayOfWeekByProjectIdResponseBody> {\n const request = new GetScanDayOfWeekByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectScansTimeofdayResources extends Resources {\n\n async get(queryStringParameters: GetScanTimeOfDayByProjectIdQueryStringParameters, options?: any): Promise<GetScanTimeOfDayByProjectIdResponseBody> {\n const request = new GetScanTimeOfDayByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectBatchResources extends Resources {\n\n async get(queryStringParameters: GetBatchesByProjectIdQueryStringParameters, options?: any): Promise<GetBatchesByProjectIdResponseBody> {\n const request = new GetBatchesByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAssetsMostscannedResources extends Resources {\n\n async get(queryStringParameters: GetMostScannedAssetsByProjectIdQueryStringParameters, options?: any): Promise<GetMostScannedAssetsByProjectIdResponseBody> {\n const request = new GetMostScannedAssetsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectUsermediasResources extends Resources {\n\n async get(queryStringParameters: GetUserMediasByProjectIdQueryStringParameters, options?: any): Promise<GetUserMediasByProjectIdResponseBody> {\n const request = new GetUserMediasByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectScansResources extends Resources {\n\n async get(queryStringParameters: GetScansByProjectIdQueryStringParameters, options?: any): Promise<GetScansByProjectIdResponseBody> {\n const request = new GetScansByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectScansTimelineResources extends Resources {\n\n async get(queryStringParameters: GetScanTimelineByProjectIdQueryStringParameters, options?: any): Promise<GetScanTimelineByProjectIdResponseBody> {\n const request = new GetScanTimelineByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectResource extends Resource {\n\n validationJobsAssetbatch(): SdkProjectValidationJobsAssetbatchResources {\n return new SdkProjectValidationJobsAssetbatchResources(this.getSession(), this.pathParameters)\n }\n\n assetgraphs(): SdkProjectAssetgraphsResources {\n return new SdkProjectAssetgraphsResources(this.getSession(), this.pathParameters)\n }\n\n contacts(): SdkProjectContactsResources {\n return new SdkProjectContactsResources(this.getSession(), this.pathParameters)\n }\n\n jobsAssetbatch(): SdkProjectJobsAssetbatchResources {\n return new SdkProjectJobsAssetbatchResources(this.getSession(), this.pathParameters)\n }\n\n assetsBatch(): SdkProjectAssetsBatchResources {\n return new SdkProjectAssetsBatchResources(this.getSession(), this.pathParameters)\n }\n\n contactsBatch(): SdkProjectContactsBatchResources {\n return new SdkProjectContactsBatchResources(this.getSession(), this.pathParameters)\n }\n\n templatedPrintPreview(): SdkProjectTemplatedPrintPreviewResources {\n return new SdkProjectTemplatedPrintPreviewResources(this.getSession(), this.pathParameters)\n }\n\n selfqueueprint(): SdkProjectSelfqueueprintResources {\n return new SdkProjectSelfqueueprintResources(this.getSession(), this.pathParameters)\n }\n\n assets(): SdkProjectAssetsResources {\n return new SdkProjectAssetsResources(this.getSession(), this.pathParameters)\n }\n\n qrCodes(): SdkProjectQrCodesResources {\n return new SdkProjectQrCodesResources(this.getSession(), this.pathParameters)\n }\n\n smsTemplate(smsTemplateName: string): SdkProjectSmsTemplateResource {\n return new SdkProjectSmsTemplateResource(this.getSession(), {...this.pathParameters, smsTemplateName})\n }\n\n presignedurlJobsAssetbatch(): SdkProjectPresignedurlJobsAssetbatchResources {\n return new SdkProjectPresignedurlJobsAssetbatchResources(this.getSession(), this.pathParameters)\n }\n\n printJobs(): SdkProjectPrintJobsResources {\n return new SdkProjectPrintJobsResources(this.getSession(), this.pathParameters)\n }\n\n advancedContactsReport(): SdkProjectAdvancedContactsReportResources {\n return new SdkProjectAdvancedContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedAssetsReport(): SdkProjectAdvancedAssetsReportResources {\n return new SdkProjectAdvancedAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedScansReport(): SdkProjectAdvancedScansReportResources {\n return new SdkProjectAdvancedScansReportResources(this.getSession(), this.pathParameters)\n }\n\n basicContactsReport(): SdkProjectBasicContactsReportResources {\n return new SdkProjectBasicContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n basicAssetsReport(): SdkProjectBasicAssetsReportResources {\n return new SdkProjectBasicAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n consent(): SdkProjectConsentResources {\n return new SdkProjectConsentResources(this.getSession(), this.pathParameters)\n }\n\n assetsExport(): SdkProjectAssetsExportResources {\n return new SdkProjectAssetsExportResources(this.getSession(), this.pathParameters)\n }\n\n smsTemplates(): SdkProjectSmsTemplatesResources {\n return new SdkProjectSmsTemplatesResources(this.getSession(), this.pathParameters)\n }\n\n contactsExport(): SdkProjectContactsExportResources {\n return new SdkProjectContactsExportResources(this.getSession(), this.pathParameters)\n }\n\n scansExport(): SdkProjectScansExportResources {\n return new SdkProjectScansExportResources(this.getSession(), this.pathParameters)\n }\n\n scansDayofweek(): SdkProjectScansDayofweekResources {\n return new SdkProjectScansDayofweekResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeofday(): SdkProjectScansTimeofdayResources {\n return new SdkProjectScansTimeofdayResources(this.getSession(), this.pathParameters)\n }\n\n batch(): SdkProjectBatchResources {\n return new SdkProjectBatchResources(this.getSession(), this.pathParameters)\n }\n\n assetsMostscanned(): SdkProjectAssetsMostscannedResources {\n return new SdkProjectAssetsMostscannedResources(this.getSession(), this.pathParameters)\n }\n\n usermedias(): SdkProjectUsermediasResources {\n return new SdkProjectUsermediasResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkProjectScansResources {\n return new SdkProjectScansResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeline(): SdkProjectScansTimelineResources {\n return new SdkProjectScansTimelineResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<DeleteProjectResponseBody> {\n const request = new DeleteProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetProjectByProjectIdResponseBody> {\n const request = new GetProjectByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateProjectByProjectIdRequestBody, options?: any): Promise<UpdateProjectByProjectIdResponseBody> {\n const request = new UpdateProjectByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkUsermediaMultipartResources extends Resources {\n\n async create(requestBody: CompleteUserMediaMultipartUploadRequestBody, options?: any): Promise<CompleteUserMediaMultipartUploadResponseBody> {\n const request = new CompleteUserMediaMultipartUploadRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkUsermediaAssetResource extends Resource {\n\n async create(options?: any): Promise<LinkMediaToAssetResponseBody> {\n const request = new LinkMediaToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<UnlinkMediaToAssetResponseBody> {\n const request = new UnlinkMediaToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUsermediaScanResource extends Resource {\n\n async create(options?: any): Promise<LinkMediaToScanResponseBody> {\n const request = new LinkMediaToScanRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<UnlinkMediaToScanResponseBody> {\n const request = new UnlinkMediaToScanRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUsermediaProjectResource extends Resource {\n\n async create(options?: any): Promise<LinkMediaToProjectResponseBody> {\n const request = new LinkMediaToProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<UnlinkMediaToProjectResponseBody> {\n const request = new UnlinkMediaToProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUsermediaResource extends Resource {\n\n multipart(): SdkUsermediaMultipartResources {\n return new SdkUsermediaMultipartResources(this.getSession(), this.pathParameters)\n }\n\n asset(assetId: string): SdkUsermediaAssetResource {\n return new SdkUsermediaAssetResource(this.getSession(), {...this.pathParameters, assetId})\n }\n\n scan(scanId: string): SdkUsermediaScanResource {\n return new SdkUsermediaScanResource(this.getSession(), {...this.pathParameters, scanId})\n }\n\n project(projectId: string): SdkUsermediaProjectResource {\n return new SdkUsermediaProjectResource(this.getSession(), {...this.pathParameters, projectId})\n }\n\n async get(options?: any): Promise<GetUserMediaResponseBody> {\n const request = new GetMediaRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUserMediaRequestBody, options?: any): Promise<UpdateUserMediaResponseBody> {\n const request = new UpdateMediaRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async delete(options?: any): Promise<DeleteUserMediaResponseBody> {\n const request = new DeleteMediaRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUserAccountsResources extends Resources {\n\n async create(requestBody: CreateAccountByUserIdRequestBody, options?: any): Promise<CreateAccountByUserIdResponseBody> {\n const request = new CreateAccountByUserIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAccountsByUserIdQueryStringParameters, options?: any): Promise<GetAccountsByUserIdResponseBody> {\n const request = new GetAccountsByUserIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkUserInvitationsResources extends Resources {\n\n async get(queryStringParameters: GetInvitationsByUserIdQueryStringParameters, options?: any): Promise<GetInvitationsByUserIdResponseBody> {\n const request = new GetInvitationsByUserIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkUserPathSettingsResources extends Resources {\n\n async get(options?: any): Promise<GetUserSettingsResponseBody> {\n const request = new GetUserSettingsByUserIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: SetUserSettingsRequestBody, options?: any): Promise<SetUserSettingsResponseBody> {\n const request = new SetUserSettingsByUserIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkUserPathResource extends Resource {\n\n settings(): SdkUserPathSettingsResources {\n return new SdkUserPathSettingsResources(this.getSession(), this.pathParameters)\n }\n\n}\n\nexport class SdkUserErrorsResources extends Resources {\n\n async get(queryStringParameters: GetErrorsByUserIdQueryStringParameters, options?: any): Promise<GetErrorsByUserIdResponseBody> {\n const request = new GetErrorsByUserIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkUserResource extends Resource {\n\n accounts(): SdkUserAccountsResources {\n return new SdkUserAccountsResources(this.getSession(), this.pathParameters)\n }\n\n invitations(): SdkUserInvitationsResources {\n return new SdkUserInvitationsResources(this.getSession(), this.pathParameters)\n }\n\n path(path: string): SdkUserPathResource {\n return new SdkUserPathResource(this.getSession(), {...this.pathParameters, path})\n }\n\n errors(): SdkUserErrorsResources {\n return new SdkUserErrorsResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetUserResponseBody> {\n const request = new GetUserRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUserRequestBody, options?: any): Promise<UpdateUserResponseBody> {\n const request = new UpdateUserRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkPrintStickerTemplateResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new DeletePrintStickerTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetPrintStickerTemplateResponseBody> {\n const request = new GetPrintStickerTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdatePrintStickerTemplateRequestBody, options?: any): Promise<UpdatePrintStickerTemplateResponseBody> {\n const request = new UpdatePrintStickerTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkStylingtemplateResource extends Resource {\n\n async delete(options?: any): Promise<DeleteStylingTemplateByStylingTemplateIdResponseBody> {\n const request = new DeleteQrCodeStylingTemplateByStylingTemplateIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateStylingTemplateByStylingTemplateIdRequestBody, options?: any): Promise<UpdateStylingTemplateByStylingTemplateIdResponseBody> {\n const request = new UpdateQrCodeStylingTemplateByStylingTemplateIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetStylingTemplateByStylingTemplateIdResponseBody> {\n const request = new GetQrCodeStylingTemplateByStylingTemplateIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkPrintPageTemplateResource extends Resource {\n\n async update(requestBody: UpdatePrintPageTemplateRequestBody, options?: any): Promise<UpdatePrintPageTemplateResponseBody> {\n const request = new UpdatePrintPageTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetPrintPageTemplateResponseBody> {\n const request = new GetPrintPageTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<any> {\n const request = new DeletePrintPageTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkScanContactsResources extends Resources {\n\n async create(requestBody: CreateContactByScanIdRequestBody, options?: any): Promise<CreateContactByScanIdResponseBody> {\n const request = new CreateContactByScanIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkScanCustomAttributeResources extends Resources {\n\n async update(requestBody: UpdateScanCustomAttributeRequestBody, options?: any): Promise<UpdateScanCustomAttributeResponseBody> {\n const request = new UpdateScanCustomAttributeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkScanResource extends Resource {\n\n contacts(): SdkScanContactsResources {\n return new SdkScanContactsResources(this.getSession(), this.pathParameters)\n }\n\n customAttribute(): SdkScanCustomAttributeResources {\n return new SdkScanCustomAttributeResources(this.getSession(), this.pathParameters)\n }\n\n async get(queryStringParameters: GetScanQueryStringParameters, options?: any): Promise<GetScanResponseBody> {\n const request = new GetScanRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: SaveGeolocationByScanIdRequestBody, options?: any): Promise<any> {\n const request = new SaveGeolocationByScanIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkUserrolesResources extends Resources {\n\n async get(options?: any): Promise<GetUserRolesResponseBody> {\n const request = new GetUserRolesRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkRefreshAuthSessionResources extends Resources {\n\n async create(options?: any): Promise<GetSessionRefreshUserSessionResponseBody> {\n const request = new GetSessionRefreshRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAuthUserResources extends Resources {\n\n async create(requestBody: CreateUserRequestBody, options?: any): Promise<any> {\n const request = new CreateUserRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAuthSessionResources extends Resources {\n\n async create(requestBody: GetSessionRequestBody, options?: any): Promise<GetSessionResponseBody> {\n const request = new GetSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<CheckSessionResponseBody> {\n const request = new CheckSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<DeleteSessionResponseBody> {\n const request = new DeleteSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkPasswordAuthUserResources extends Resources {\n\n async create(requestBody: ChangePasswordRequestBody, options?: any): Promise<ChangePasswordResponseBody> {\n const request = new ChangePasswordRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkResetAuthUserResources extends Resources {\n\n async create(requestBody: ResetPasswordRequestBody, options?: any): Promise<any> {\n const request = new ResetPasswordRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkConfirmationAuthUserResources extends Resources {\n\n async create(requestBody: ResendConfirmationRequestBody, options?: any): Promise<any> {\n const request = new ResendConfirmationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkResources extends Resources {\n\n apikey(apiKeyId: string): SdkApikeyResource {\n return new SdkApikeyResource(this.getSession(), {...this.pathParameters, apiKeyId})\n }\n\n app(appId: string): SdkAppResource {\n return new SdkAppResource(this.getSession(), {...this.pathParameters, appId})\n }\n\n appsPublished(): SdkAppsPublishedResources {\n return new SdkAppsPublishedResources(this.getSession(), this.pathParameters)\n }\n\n apps(): SdkAppsResources {\n return new SdkAppsResources(this.getSession(), this.pathParameters)\n }\n\n appsAccount(appAccountId: string): SdkAppsAccountResource {\n return new SdkAppsAccountResource(this.getSession(), {...this.pathParameters, appAccountId})\n }\n\n assettype(assetTypeId: string): SdkAssettypeResource {\n return new SdkAssettypeResource(this.getSession(), {...this.pathParameters, assetTypeId})\n }\n\n asset(assetId: string): SdkAssetResource {\n return new SdkAssetResource(this.getSession(), {...this.pathParameters, assetId})\n }\n\n account(accountId: string): SdkAccountResource {\n return new SdkAccountResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n batch(batchId: string): SdkBatchResource {\n return new SdkBatchResource(this.getSession(), {...this.pathParameters, batchId})\n }\n\n upgradePlanBillingPreview(accountId: string): SdkUpgradePlanBillingPreviewResource {\n return new SdkUpgradePlanBillingPreviewResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingCancelDowngrade(accountId: string): SdkBillingCancelDowngradeResource {\n return new SdkBillingCancelDowngradeResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n careAccounts(): SdkCareAccountsResources {\n return new SdkCareAccountsResources(this.getSession(), this.pathParameters)\n }\n\n billingCurrentPeriod(accountId: string): SdkBillingCurrentPeriodResource {\n return new SdkBillingCurrentPeriodResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingSetupIntent(accountId: string): SdkBillingSetupIntentResource {\n return new SdkBillingSetupIntentResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingCancelSubscription(accountId: string): SdkBillingCancelSubscriptionResource {\n return new SdkBillingCancelSubscriptionResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingInvoice(accountId: string): SdkBillingInvoiceResource {\n return new SdkBillingInvoiceResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingDetail(accountId: string): SdkBillingDetailResource {\n return new SdkBillingDetailResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingDowngradePlan(accountId: string): SdkBillingDowngradePlanResource {\n return new SdkBillingDowngradePlanResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingUpgradePlan(accountId: string): SdkBillingUpgradePlanResource {\n return new SdkBillingUpgradePlanResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n contact(contactId: string): SdkContactResource {\n return new SdkContactResource(this.getSession(), {...this.pathParameters, contactId})\n }\n\n customdomain(customDomain: string): SdkCustomdomainResource {\n return new SdkCustomdomainResource(this.getSession(), {...this.pathParameters, customDomain})\n }\n\n assetgraph(assetGraphId: string): SdkAssetgraphResource {\n return new SdkAssetgraphResource(this.getSession(), {...this.pathParameters, assetGraphId})\n }\n\n invitation(invitationId: string): SdkInvitationResource {\n return new SdkInvitationResource(this.getSession(), {...this.pathParameters, invitationId})\n }\n\n job(jobId: string): SdkJobResource {\n return new SdkJobResource(this.getSession(), {...this.pathParameters, jobId})\n }\n\n printJob(printJobId: string): SdkPrintJobResource {\n return new SdkPrintJobResource(this.getSession(), {...this.pathParameters, printJobId})\n }\n\n location(locationId: string): SdkLocationResource {\n return new SdkLocationResource(this.getSession(), {...this.pathParameters, locationId})\n }\n\n qrcodelogo(qrCodeLogoId: string): SdkQrcodelogoResource {\n return new SdkQrcodelogoResource(this.getSession(), {...this.pathParameters, qrCodeLogoId})\n }\n\n support(): SdkSupportResources {\n return new SdkSupportResources(this.getSession(), this.pathParameters)\n }\n\n qrCode(qrCodeId: string): SdkQrCodeResource {\n return new SdkQrCodeResource(this.getSession(), {...this.pathParameters, qrCodeId})\n }\n\n pricePlans(): SdkPricePlansResources {\n return new SdkPricePlansResources(this.getSession(), this.pathParameters)\n }\n\n qrcodelink(qrCodeLink: string): SdkQrcodelinkResource {\n return new SdkQrcodelinkResource(this.getSession(), {...this.pathParameters, qrCodeLink})\n }\n\n file(fileId: string): SdkFileResource {\n return new SdkFileResource(this.getSession(), {...this.pathParameters, fileId})\n }\n\n project(projectId: string): SdkProjectResource {\n return new SdkProjectResource(this.getSession(), {...this.pathParameters, projectId})\n }\n\n usermedia(mediaId: string): SdkUsermediaResource {\n return new SdkUsermediaResource(this.getSession(), {...this.pathParameters, mediaId})\n }\n\n user(userId: string): SdkUserResource {\n return new SdkUserResource(this.getSession(), {...this.pathParameters, userId})\n }\n\n printStickerTemplate(printStickerTemplateId: string): SdkPrintStickerTemplateResource {\n return new SdkPrintStickerTemplateResource(this.getSession(), {...this.pathParameters, printStickerTemplateId})\n }\n\n stylingtemplate(stylingTemplateId: string): SdkStylingtemplateResource {\n return new SdkStylingtemplateResource(this.getSession(), {...this.pathParameters, stylingTemplateId})\n }\n\n printPageTemplate(printPageTemplateId: string): SdkPrintPageTemplateResource {\n return new SdkPrintPageTemplateResource(this.getSession(), {...this.pathParameters, printPageTemplateId})\n }\n\n scan(scanId: string): SdkScanResource {\n return new SdkScanResource(this.getSession(), {...this.pathParameters, scanId})\n }\n\n userroles(): SdkUserrolesResources {\n return new SdkUserrolesResources(this.getSession(), this.pathParameters)\n }\n\n refreshAuthSession(): SdkRefreshAuthSessionResources {\n return new SdkRefreshAuthSessionResources(this.getSession(), this.pathParameters)\n }\n\n authUser(): SdkAuthUserResources {\n return new SdkAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n authSession(): SdkAuthSessionResources {\n return new SdkAuthSessionResources(this.getSession(), this.pathParameters)\n }\n\n passwordAuthUser(): SdkPasswordAuthUserResources {\n return new SdkPasswordAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n resetAuthUser(): SdkResetAuthUserResources {\n return new SdkResetAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n confirmationAuthUser(): SdkConfirmationAuthUserResources {\n return new SdkConfirmationAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n}\n\n","\nimport axios, {AxiosInstance} from 'axios'\nimport { wrapper } from 'axios-cookiejar-support'\nimport { CookieJar } from 'tough-cookie'\n\nimport {CreateUserRequestBody, SdkResources, User} from './sdk'\nimport {ICloudConfig} from './cloud-config'\nimport {IConfig} from './config'\nimport {IOpenscreenSession} from './openscreen-session'\n\nconst ProdConfigurationPath = 'internal-JG0adajZUHU'\n\nasync function getCloudConfig(pathToConfig: string): Promise<ICloudConfig> {\n const thisAxios = axios.create({\n baseURL: 'https://config.openscreen.com',\n timeout: 25000,\n responseType: 'json',\n maxContentLength: 10 * 1024,\n maxBodyLength: 10 * 1024,\n maxRedirects: 1,\n decompress: true,\n })\n const response = await thisAxios.get(`${pathToConfig}.json`).catch((err: {message: any}) => {\n throw new Error(`Openscreen: unable to load cloud configuration '${pathToConfig}': ${err.message}`)\n })\n const {data} = response\n return data as ICloudConfig\n}\n\nclass NullSession implements IOpenscreenSession {\n public debugConfig = false\n public debugAuth = false\n public debugRequest = false\n public debugResponse = false\n public debugError = false\n public debugQuery = false\n public debugOptions = false\n public exp = 0\n\n getConfig(): IConfig {\n throw Error('no session')\n }\n\n getCloudConfig(): Promise<ICloudConfig> {\n throw Error('no session')\n }\n\n getAxios(): Promise<AxiosInstance> {\n throw Error('no session')\n }\n\n async authorize(): Promise<void> {\n throw Error('no session')\n }\n\n getUser(): User | undefined {\n return undefined\n }\n\n async getSignedInUser(): Promise<User> {\n throw Error('no session')\n }\n\n async createUser(): Promise<boolean> {\n throw Error('no session')\n }\n\n async changePassword(): Promise<boolean> {\n throw Error('no session')\n }\n\n async signOut(): Promise<void> {\n throw Error('no session')\n }\n}\n\nexport class Openscreen extends SdkResources implements IOpenscreenSession {\n protected _config?: IConfig\n protected cloudConfigName?: string\n protected cloudConfig?: Promise<ICloudConfig>\n protected axios?: AxiosInstance\n protected _user: User | undefined\n public debugConfig: boolean = false\n public debugAuth: boolean = false\n public debugRequest: boolean = false\n public debugResponse: boolean = false\n public debugError: boolean = false\n public debugQuery: boolean = false\n public debugOptions: boolean = false\n public exp: number\n\n constructor() {\n super(new NullSession(), {})\n this.exp = 0\n let {OS_DEBUG} = process.env\n if (OS_DEBUG) {\n console.log(`OS_DEBUG=${OS_DEBUG}`)\n OS_DEBUG = OS_DEBUG.toLowerCase()\n let debug\n switch (OS_DEBUG) {\n case 'all':\n this.debugConfig = true\n this.debugAuth = true\n this.debugRequest = true\n this.debugResponse = true\n this.debugError = true\n this.debugQuery = true\n this.debugOptions = true\n break\n case 'none':\n case 'off':\n case 'false':\n case '':\n this.debugConfig = false\n this.debugAuth = false\n this.debugRequest = false\n this.debugResponse = false\n this.debugError = false\n this.debugQuery = false\n this.debugOptions = false\n break\n default:\n debug = OS_DEBUG.split(',')\n this.debugConfig = debug.includes('config')\n this.debugAuth = debug.includes('auth')\n this.debugRequest = debug.includes('request')\n this.debugResponse = debug.includes('response')\n this.debugError = debug.includes('error')\n this.debugQuery = debug.includes('query')\n this.debugOptions = debug.includes('options')\n if (\n !(\n this.debugConfig ||\n this.debugAuth ||\n this.debugRequest ||\n this.debugResponse ||\n this.debugError ||\n this.debugQuery ||\n this.debugOptions\n )\n ) {\n console.warn(`Openscreen: OS_DEBUG environment var has invalid value: '${process.env.OS_DEBUG}'`)\n }\n break\n }\n }\n }\n\n getSession() {\n return this\n }\n\n config(config: IConfig): Openscreen {\n if (this._config) {\n throw Error('Openscreen: client is already configured')\n }\n if (config.key) {\n if (!config.secret) {\n throw Error('Openscreen: invalid config, secret is missing')\n }\n } else {\n throw Error('Openscreen: invalid config, provide API key and secret, or email and password')\n }\n if (typeof config.environment === 'string') {\n this.cloudConfigName = config.environment\n } else if (typeof config.environment === 'object') {\n this.cloudConfig = Promise.resolve(config.environment)\n } else {\n this.cloudConfigName = ProdConfigurationPath\n }\n // eslint-disable-next-line no-param-reassign\n this._config = config\n return this\n }\n\n getConfig(): IConfig {\n if (!this._config) {\n throw Error('Openscreen: client must be configured before accessing resources')\n }\n return this._config\n }\n\n async getSignedInUser(): Promise<User> {\n await this.authorize()\n return this._user!\n }\n\n async createUser(requestBody: CreateUserRequestBody): Promise<boolean> {\n return new SdkResources(this, {}).authUser().create(requestBody, { willAuthorize: false })\n }\n\n async checkSession(): Promise<boolean> {\n if (this.debugAuth) console.info(`Openscreen AUTH: checking session`)\n await this.authSession().get({ willAuthorize: false })\n return true\n }\n\n async authorize(): Promise<void> {\n\n // CURRENT ACCESS TOKEN IS STILL VALID\n if (this.exp > new Date().getTime()) {\n if (this.debugAuth) console.info(`Openscreen AUTH: already authorized '${this._user.email}' until expiry=${this.exp}`)\n return\n }\n\n // THERE IS AN ACCESS TOKEN BUT WE NEED TO REFRESH IT\n if (this.exp !== 0) {\n if (this.debugAuth) console.info(`Openscreen AUTH: refreshing '${this._user.email}'`)\n const res = await this.refreshAuthSession().create({ willAuthorize: false })\n const {expires} = res\n this.exp = Number(expires)\n if (this.debugAuth) console.info(`Openscreen AUTH: authorized '${this._user.email}' until expiry=${expires}`)\n return\n }\n\n // if code reaches here that means the exp == 0 and it's a brand new session so we gotta login\n const config = this.getConfig()\n if (this.debugConfig) {\n const c = {...config}\n if (c.secret) c.secret = '*'.repeat(c.secret.length)\n console.debug(`Openscreen CONFIG:`, c)\n }\n\n const email = config.key!\n const password = config.secret!\n if (this.debugAuth) console.info(`Openscreen AUTH: authorizing '${email}'`)\n const res = await this.authSession().create({ email, password }, { willAuthorize: false })\n const {expires, user} = res\n if (user) {\n this._user = user\n } else {\n this._user = {\n email,\n firstName: '',\n lastName: '',\n middleName: '',\n userId: '00000000-0000-0000-0000-000000000000',\n }\n }\n this.exp = Number(expires)\n if (this.debugAuth) console.info(`Openscreen AUTH: authorized '${email}' until expiry=${expires}`)\n }\n\n getUser(): User | undefined {\n return this._user\n }\n\n async getCloudConfig(): Promise<ICloudConfig> {\n if (!this.cloudConfig) {\n if (!this.cloudConfigName) {\n throw Error('Openscreen: environment name missing')\n }\n this.cloudConfig = getCloudConfig(this.cloudConfigName)\n }\n return this.cloudConfig\n }\n\n async getAxios(): Promise<AxiosInstance> {\n if (this.axios) return this.axios\n const jar = new CookieJar()\n const cloudConfig = await this.getCloudConfig()\n if (cloudConfig.axios) {\n this.axios = wrapper(axios.create({ ...cloudConfig.axios, jar }))\n } else {\n this.axios = wrapper(axios.create({\n decompress: true,\n jar,\n maxBodyLength: 1024 * 1024,\n maxContentLength: 1024 * 1024,\n maxRedirects: 1,\n responseType: 'json',\n timeout: 25000,\n }))\n }\n return this.axios\n }\n\n async changePassword(oldPassword: string, newPassword: string): Promise<boolean> {\n await this.passwordAuthUser().create({\n password: oldPassword,\n newPassword,\n }, { willAuthorize: false })\n return true\n }\n\n async signOut() {\n await this.authSession().delete({ willAuthorize: false })\n this._user = {\n email: '',\n firstName: '',\n lastName: '',\n middleName: '',\n userId: '00000000-0000-0000-0000-000000000000',\n }\n this.exp = 0\n }\n}\n"],"names":["Request","constructor","session","routeSegments","this","makeUri","pathParameters","urlParts","getCloudConfig","endpoint","replace","forEach","segment","push","routePart","parm","value","Error","join","debugRequest","httpMethod","url","queryParameters","body","options","console","debug","toUpperCase","JSON","stringify","debugQuery","debugOptions","debugResponse","response","data","handleAndDebugErr","err","debugError","error","_unused","RequestDelete","go","willAuthorize","authorize","axios","getAxios","delete","_extends","params","RequestGet","get","RequestPatch","patch","RequestPost","post","Resources","self","getSession","Resource","id","AccountDomainTypes","AccountSortingTypes","AccountStatus","AccountType","AccountUserRole","AssetByAssetTypeSortingTypes","AssetCreationFileTypes","AssetSortingTypes","AssetTypeSortingTypes","AssetTypeUsabilityState","AuthMessageId","AuthTokenScope","AuthTypes","CampaignUseCaseCategory","ConsentStatus","ConsentType","ContactAssetSortingTypes","ContactSortingTypes","DomainStatus","EntitySources","FieldType","InternalProductName","InvoiceStatus","JobStatus","JobType","Label","LocationSortingTypes","OpenscreenEmails","Permission","PluginNameTypes","PluginStatus","PricePlanName","PricePlanPaymentPeriod","PricePlanReporting","PrintFormat","PrintMode","PrintOrientation","PrintTemplate","PrintUnit","ProjectSortingTypes","ProjectStatus","QrCodeCornerDotTypes","QrCodeCornerSquareTypes","QrCodeDotTypes","QrCodeDynamicRedirectType","QrCodeErrorCorrectionLevel","QrCodeGradientTypes","QrCodeIntentType","QrCodeLocatorKeyType","QrCodeSortingTypes","QrCodeStatus","QrCodeType","QueryConditions","ScanTimelineOptions","StickerShape","TagActions","TagStates","UserCredentialsStatus","UserGroups","UserMediaFileTypes","UserMediaSortingTypes","UserSettingsDomain","ResetApiKeySecretRequest","args","super","sdkPartName","UpdateApiKeyRequest","GetAppByAppIdRequest","GetPublishedAppsRequest","UpdateAppByAppIdRequest","GetAppsRequest","GetApiKeyRequest","LoadAppRequest","GetMainAccountByAppAccountIdRequest","ComposeAssetByAssetTypeRequest","DeleteAssetTypeRequest","GetAppAccountByAppAccountIdRequest","CreateAssetByAssetTypeRequest","GetAssetsByAssetTypeRequest","GetAssetTypeByAssetTypeIdRequest","GetApiKeySecretRequest","UpdateAssetTypeRequest","GetAssetTypeCountsByLocationRequest","CreateContactByAssetIdRequest","UpdateAssetTypeCountAtLocationRequest","CreateQrCodeByAssetIdRequest","CreateNeighborsByAssetIdRequest","DeleteAssetRequest","GetAssetTypeCountAtLocationRequest","CreateQrCodesByAssetIdRequest","NameRequest","GetAssetHistoryRequest","GetExternalNeighborScanCountByAssetIdRequest","GetNeighborScanCountByAssetIdRequest","GetContactsByAssetIdRequest","GetNeighborsByAssetIdRequest","GetScanExportByAssetIdRequest","GetUserMediasByAssetIdRequest","GetScanLocationDataByAssetIdRequest","GetQrCodesByAssetIdRequest","UnlinkContactToAssetRequest","GetScansByAssetIdRequest","GetAccountAccessDataRequest","CreateAssetTypeByAccountIdRequest","DeleteNeighborsByAssetIdRequest","CreateApiKeyByAccountIdRequest","CheckUrlSafetyByAccountIdRequest","CreateInvitationByAccountIdRequest","UpdateAssetRequest","CreateInvitationsByAccountIdRequest","CreatePrintPageTemplateByAccountIdRequest","CreateLocationByAccountIdRequest","LinkContactToAssetRequest","CreateQrCodeLogoByAccountRequest","CreateImageUploadPresignedUrlRequest","CreateProjectByAccountIdRequest","CreateQueryableCustomAttributeRequest","CreateUserMediaMultipartPresignedUrlByAccountIdRequest","CreateAppRequest","CreateQrCodeStylingTemplateByAccountRequest","CreateTicketByAccountIdRequest","DeleteContactsByAccountIdRequest","GetAccountRequest","GetCustomDomainRequest","CreatePrintStickerTemplateByAccountIdRequest","CreateUserMediaPresignedUrlByAccountIdRequest","DeleteUserByAccountIdRequest","GetAdvancedAssetReportByAccountIdRequest","GetAdvancedScanReportByAccountIdRequest","GetAdvancedContactReportByAccountIdRequest","GetAllAppsByAccountIdRequest","GetAssetGraphsByAccountIdRequest","GetApiKeysByAccountIdRequest","GetAssetExportByAccountIdRequest","GetAssetsByAccountIdRequest","GetBasicAssetReportByAccountIdRequest","GetBasicContactReportByAccountIdRequest","GetAssetTypesByAccountIdRequest","GetBatchesByAccountIdRequest","GetConsentByAccountIdRequest","GetContactsByAccountIdRequest","GetInstalledAppsByAccountIdRequest","GetJobsByAccountIdRequest","GetDomainsByAccountIdRequest","GetContactExportByAccountIdRequest","GetMostScannedAssetsByAccountIdRequest","GetPluginsByAccountIdRequest","GetPrintJobsByAccountIdRequest","GetPricePlanByAccountIdRequest","GetPrintPageTemplatesByAccountIdRequest","GetProjectExportByAccountIdRequest","GetPrintStickerTemplatesByAccountIdRequest","GetQrCodeStylingTemplatesByAccountIdRequest","GetQrCodeLogosByAccountIdRequest","GetProjectsByAccountIdRequest","GetQrCodesByAccountIdRequest","GetAssetsScanCountByAccountIdRequest","GetUsersByAccountIdRequest","GetScanTimelineByAccountIdRequest","GetScanDayOfWeekByAccountIdRequest","GetUserMediasByAccountIdRequest","GetLocationsByAccountIdRequest","GetScanExportByAccountIdRequest","GetScansByAccountIdRequest","GetUserByAccountIdRequest","GetUsersRolesByAccountIdRequest","GetQueryableCustomAttributeRequest","InstallAppToAccountRequest","AdvanceStripeClockByAccountIdRequest","UpdatePricePlanByAccountIdRequest","UpdateEngagePricePlanRequest","CreateCampaignAccountByAccountIdRequest","UpdateUserByAccountIdRequest","UpdateAccountRequest","RetrieveCampaignStatusByAccountIdRequest","UpdateUsersRolesByAccountIdRequest","UploadQrCodeLogoByAccountRequest","GetAssetsByBatchIdRequest","ChangeSubscriptionPreviewRequest","GetScanTimeOfDayByAccountIdRequest","CancelDowngradeRequestRequest","GetAllAccountsRequest","GetCurrentPeriodRequest","CreateSetupIntentRequest","CancelSubscriptionRequest","GetInvoicesRequest","GetBillingDetailsRequest","DowngradePlanRequest","ChangeSubscriptionRequest","CreateConsentByContactIdRequest","GetConsentByContactIdRequest","GetAssetsByContactIdRequest","GetContactExportByContactIdRequest","GetContactRequest","UpdateContactRequest","DeleteContactRequest","GetScanExportByContactIdRequest","GetScanLocationDataByContactIdRequest","DeleteConsentByContactIdRequest","LinkContactToScanRequest","RetryCustomDomainRequest","GetScansByContactIdRequest","DeleteCustomDomainRequest","DeleteAssetGraphRequest","GetAssetGraphRequest","GetInvitationRequest","DeleteInvitationRequest","CreateUserByInvitationIdRequest","DeleteJobRequest","UpdateAssetGraphRequest","GetJobRequest","InvokePrintJobByJobIdRequest","UpdateLocationRequest","DeleteLocationRequest","UpdateAssetsLocationsRequest","GetQrCodeLogoByQrCodeLogoIdRequest","DeletePrintJobRequest","GetAssetsByLocationIdRequest","SendSupportEmailRequest","CreateLinkByQrCodeRequest","DeleteLinkByQrCodeRequest","GetPricePlansRequest","DeleteQrCodeRequest","GetQrCodeLinkRequest","GetQrCodeRequest","GetLinksByQrCodeRequest","CheckCustomLocatorKeyRangeRequest","ValidateFileRequest","UpdateQrCodeLogoByQrCodeLogoIdRequest","GetFileRequest","UpdateQrCodeRequest","CreateAssetBatchValidationJobByProjectIdRequest","CreateAssetGraphByProjectIdRequest","CreateContactByProjectIdRequest","CreateAssetCreationJobByProjectIdRequest","CreateAssetsByProjectIdRequest","CreateContactsByProjectIdRequest","CreateTemplatedPrintPreviewByProjectIdRequest","CreateSelfQueuePrintJobByProjectIdRequest","DeleteContactsByProjectIdRequest","CreateAssetByProjectIdRequest","CreateQrCodeByProjectIdRequest","DeleteSmsTemplateByProjectIdRequest","DeleteProjectRequest","CreateAssetCreationPresignedUrlRequest","CreateTemplatedPrintJobByProjectIdRequest","GetAdvancedContactReportByProjectIdRequest","GetAdvancedAssetReportByProjectIdRequest","GetAdvancedScanReportByProjectIdRequest","GetAssetsByProjectIdRequest","GetBasicContactReportByProjectIdRequest","GetBasicAssetReportByProjectIdRequest","GetConsentByProjectIdRequest","GetAssetExportByProjectIdRequest","CreateSmsTemplateByProjectIdRequest","GetContactsByProjectIdRequest","GetProjectByProjectIdRequest","GetContactExportByProjectIdRequest","GetScanExportByProjectIdRequest","GetScanDayOfWeekByProjectIdRequest","GetQrCodesByProjectIdRequest","GetScanTimeOfDayByProjectIdRequest","GetAssetGraphsByProjectIdRequest","GetBatchesByProjectIdRequest","GetMostScannedAssetsByProjectIdRequest","GetUserMediasByProjectIdRequest","UpdateProjectByProjectIdRequest","GetScansByProjectIdRequest","GetScanTimelineByProjectIdRequest","CompleteUserMediaMultipartUploadRequest","LinkMediaToAssetRequest","GetMediaRequest","LinkMediaToScanRequest","LinkMediaToProjectRequest","UnlinkMediaToProjectRequest","UnlinkMediaToScanRequest","UpdateMediaRequest","UnlinkMediaToAssetRequest","CreateAccountByUserIdRequest","GetAccountsByUserIdRequest","GetUserRequest","GetInvitationsByUserIdRequest","GetUserSettingsByUserIdRequest","GetErrorsByUserIdRequest","DeletePrintStickerTemplateRequest","GetPrintStickerTemplateRequest","SetUserSettingsByUserIdRequest","UpdateUserRequest","DeleteQrCodeStylingTemplateByStylingTemplateIdRequest","UpdatePrintPageTemplateRequest","UpdateQrCodeStylingTemplateByStylingTemplateIdRequest","GetPrintPageTemplateRequest","GetQrCodeStylingTemplateByStylingTemplateIdRequest","GetScanRequest","SaveGeolocationByScanIdRequest","CreateContactByScanIdRequest","DeletePrintPageTemplateRequest","UpdateScanCustomAttributeRequest","GetUserRolesRequest","UpdatePrintStickerTemplateRequest","GetSessionRefreshRequest","CreateUserRequest","GetSessionRequest","CheckSessionRequest","ChangePasswordRequest","DeleteSessionRequest","ResetPasswordRequest","ResendConfirmationRequest","DeleteMediaRequest","SdkApikeySecretResources","update","undefined","SdkApikeyResource","secret","requestBody","SdkAppAccountLoadResources","create","SdkAppAccountResource","load","SdkAppResource","account","accountId","SdkAppsPublishedResources","queryStringParameters","SdkAppsResources","SdkAppsAccountMainResources","SdkAppsAccountResource","main","SdkAssettypeAssetResource","SdkAssettypeAssetsResources","SdkAssettypeLocationsResources","SdkAssettypeLocationResource","SdkAssettypeResource","asset","assetId","assets","locations","location","locationId","SdkAssetContactsResources","SdkAssetQrCodesResources","SdkAssetNeighborsResources","SdkAssetQracodesResources","SdkAssetHistoryResources","SdkAssetUrlResource","SdkAssetNeighborResource","SdkAssetScansExportResources","SdkAssetUsermediasResources","SdkAssetScansLocationResources","SdkAssetContactResource","SdkAssetScansResources","SdkAssetNeighborsDeleteResources","SdkAssetResource","contacts","qrCodes","neighbors","qracodes","history","neighbor","neighborId","scansExport","usermedias","scansLocation","contact","contactId","scans","neighborsDelete","SdkAccountUserConfirmResources","SdkAccountUserRolesResources","SdkAccountUserResource","confirm","roles","SdkAccountAssettypesResources","SdkAccountApikeysResources","SdkAccountUrlSafetiesResources","SdkAccountInvitationsResources","SdkAccountInvitationsBatchResources","SdkAccountPrintPageTemplatesResources","SdkAccountLocationsResources","SdkAccountQrcodelogosResources","SdkAccountImageUploadResources","SdkAccountProjectsResources","SdkAccountCustomattributesResources","SdkAccountUsermediasPresignedurlmultipartResources","SdkAccountAppsResources","SdkAccountStylingtemplatesResources","SdkAccountZendeskTicketResources","SdkAccountContactsBatchResources","SdkAccountCustomDomainResource","SdkAccountPrintStickerTemplatesResources","SdkAccountUsermediasPresignedurlResources","SdkAccountAdvancedAssetsReportResources","SdkAccountAdvancedScansReportResources","SdkAccountAdvancedContactsReportResources","SdkAccountOwnerAppsResources","SdkAccountAssetgraphsResources","SdkAccountAssetsExportResources","SdkAccountAssetsResources","SdkAccountBasicAssetsReportResources","SdkAccountBasicContactsReportResources","SdkAccountBatchResources","SdkAccountConsentResources","SdkAccountContactsResources","SdkAccountJobsResources","SdkAccountCustomDomainsResources","SdkAccountContactsExportResources","SdkAccountAssetsMostscannedResources","SdkAccountPluginsResources","SdkAccountPrintJobsResources","SdkAccountPricePlanResources","SdkAccountProjectsExportResources","SdkAccountQrCodesResources","SdkAccountAssetsScansResources","SdkAccountUsersResources","SdkAccountScansTimelineResources","SdkAccountScansDayofweekResources","SdkAccountUsermediasResources","SdkAccountScansExportResources","SdkAccountScansResources","SdkAccountAppInstallResources","SdkAccountAppResource","install","SdkAccountClockResources","SdkAccountEngagePricePlanResources","SdkAccountCampaignInformationResources","SdkAccountQrcodelogosUploadResources","SdkAccountScansTimeofdayResources","SdkAccountResource","user","userId","assettypes","apikeys","urlSafeties","invitations","invitationsBatch","printPageTemplates","qrcodelogos","imageUpload","projects","customattributes","usermediasPresignedurlmultipart","apps","stylingtemplates","zendeskTicket","contactsBatch","customDomain","printStickerTemplates","usermediasPresignedurl","advancedAssetsReport","advancedScansReport","advancedContactsReport","ownerApps","assetgraphs","assetsExport","basicAssetsReport","basicContactsReport","batch","consent","jobs","customDomains","contactsExport","assetsMostscanned","plugins","printJobs","pricePlan","projectsExport","assetsScans","users","scansTimeline","scansDayofweek","app","appId","clock","engagePricePlan","campaignInformation","qrcodelogosUpload","scansTimeofday","SdkBatchAssetsResources","SdkBatchResource","SdkUpgradePlanBillingPreviewResource","SdkBillingCancelDowngradeResource","SdkCareAccountsResources","SdkBillingCurrentPeriodResource","SdkBillingSetupIntentResource","SdkBillingCancelSubscriptionResource","SdkBillingInvoiceResource","SdkBillingDetailResource","SdkBillingDowngradePlanResource","SdkBillingUpgradePlanResource","SdkContactConsentResources","SdkContactAssetsResources","SdkContactExportResources","SdkContactScansExportResources","SdkContactScansLocationResources","SdkContactScanResource","SdkContactScansResources","SdkContactResource","export","scan","scanId","SdkCustomdomainRetryResources","SdkCustomdomainLocatorCollisionsResources","SdkCustomdomainResource","retry","locatorCollisions","SdkAssetgraphResource","SdkInvitationUsersResources","SdkInvitationResource","SdkJobResource","SdkPrintJobResource","SdkLocationAssetsResources","SdkLocationResource","SdkQrcodelogoResource","SdkSupportResources","SdkQrCodeLinksResources","SdkQrCodeLinkResource","SdkQrCodeResource","links","link","SdkPricePlansResources","SdkQrcodelinkResource","SdkFileValidateResources","SdkFileResource","validate","SdkProjectValidationJobsAssetbatchResources","SdkProjectAssetgraphsResources","SdkProjectContactsResources","SdkProjectJobsAssetbatchResources","SdkProjectAssetsBatchResources","SdkProjectContactsBatchResources","SdkProjectTemplatedPrintPreviewResources","SdkProjectSelfqueueprintResources","SdkProjectAssetsResources","SdkProjectQrCodesResources","SdkProjectSmsTemplateResource","SdkProjectPresignedurlJobsAssetbatchResources","SdkProjectPrintJobsResources","SdkProjectAdvancedContactsReportResources","SdkProjectAdvancedAssetsReportResources","SdkProjectAdvancedScansReportResources","SdkProjectBasicContactsReportResources","SdkProjectBasicAssetsReportResources","SdkProjectConsentResources","SdkProjectAssetsExportResources","SdkProjectSmsTemplatesResources","SdkProjectContactsExportResources","SdkProjectScansExportResources","SdkProjectScansDayofweekResources","SdkProjectScansTimeofdayResources","SdkProjectBatchResources","SdkProjectAssetsMostscannedResources","SdkProjectUsermediasResources","SdkProjectScansResources","SdkProjectScansTimelineResources","SdkProjectResource","validationJobsAssetbatch","jobsAssetbatch","assetsBatch","templatedPrintPreview","selfqueueprint","smsTemplate","smsTemplateName","presignedurlJobsAssetbatch","smsTemplates","SdkUsermediaMultipartResources","SdkUsermediaAssetResource","SdkUsermediaScanResource","SdkUsermediaProjectResource","SdkUsermediaResource","multipart","project","projectId","SdkUserAccountsResources","SdkUserInvitationsResources","SdkUserPathSettingsResources","SdkUserPathResource","settings","SdkUserErrorsResources","SdkUserResource","accounts","path","errors","SdkPrintStickerTemplateResource","SdkStylingtemplateResource","SdkPrintPageTemplateResource","SdkScanContactsResources","SdkScanCustomAttributeResources","SdkScanResource","customAttribute","SdkUserrolesResources","SdkRefreshAuthSessionResources","SdkAuthUserResources","SdkAuthSessionResources","SdkPasswordAuthUserResources","SdkResetAuthUserResources","SdkConfirmationAuthUserResources","SdkResources","apikey","apiKeyId","appsPublished","appsAccount","appAccountId","assettype","assetTypeId","batchId","upgradePlanBillingPreview","billingCancelDowngrade","careAccounts","billingCurrentPeriod","billingSetupIntent","billingCancelSubscription","billingInvoice","billingDetail","billingDowngradePlan","billingUpgradePlan","customdomain","assetgraph","assetGraphId","invitation","invitationId","job","jobId","printJob","printJobId","qrcodelogo","qrCodeLogoId","support","qrCode","qrCodeId","pricePlans","qrcodelink","qrCodeLink","file","fileId","usermedia","mediaId","printStickerTemplate","printStickerTemplateId","stylingtemplate","stylingTemplateId","printPageTemplate","printPageTemplateId","userroles","refreshAuthSession","authUser","authSession","passwordAuthUser","resetAuthUser","confirmationAuthUser","NullSession","debugConfig","debugAuth","exp","getConfig","getUser","getSignedInUser","createUser","changePassword","signOut","Openscreen","_config","cloudConfigName","cloudConfig","_user","OS_DEBUG","process","env","log","toLowerCase","split","includes","warn","config","key","environment","Promise","resolve","checkSession","info","Date","getTime","email","res","expires","Number","c","repeat","length","password","firstName","lastName","middleName","async","pathToConfig","thisAxios","baseURL","timeout","responseType","maxContentLength","maxBodyLength","maxRedirects","decompress","catch","message","jar","CookieJar","wrapper","oldPassword","newPassword"],"mappings":"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"}