type
stringclasses
7 values
content
stringlengths
4
9.55k
repo
stringlengths
7
96
path
stringlengths
4
178
language
stringclasses
1 value
InterfaceDeclaration
/** * @class * Initializes a new instance of the Version class. * @constructor * @member {string} [version] version * @member {number} [count] version count * @member {number} [previousCount] the count of previous time range of the * version */ export interface Version { version?: string; count?: number; ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the Versions class. * @constructor * @member {array} [versions] list of version count * @member {number} [total] the total count of versions */ export interface Versions { versions?: Version[]; total?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the SessionsPerDeviceSessionsPerUserItem class. * @constructor * @member {string} [datetime] the ISO 8601 datetime * @member {number} [count] count */ export interface SessionsPerDeviceSessionsPerUserItem { datetime?: string; count?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the SessionsPerDevice class. * @constructor * @member {number} [averageSessionsPerUser] average seesion per user * @member {number} [previousAverageSessionsPerUser] previous average session * per user * @member {number} [totalCount] total session per device count * @...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the Model class. * @constructor * @member {string} [modelName] model's name * @member {number} [count] count current of model * @member {number} [previousCount] count of previous model */ export interface Model { modelName?: string; count?: number; previousCount...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AnalyticsModels class. * @constructor * @member {number} [total] * @member {array} [modelsProperty] */ export interface AnalyticsModels { total?: number; modelsProperty?: Model[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the Language class. * @constructor * @member {string} [languageName] language's name * @member {number} [count] count current of language * @member {number} [previousCount] count of previous lanugage */ export interface Language { languageName?: string; count?: nu...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the Languages class. * @constructor * @member {number} [total] * @member {array} [languages] */ export interface Languages { total?: number; languages?: Language[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the OS class. * @constructor * @member {string} [osName] OS name * @member {number} [count] count current of OS * @member {number} [previousCount] count of previous OS */ export interface OS { osName?: string; count?: number; previousCount?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the OSes class. * @constructor * @member {number} [total] * @member {array} [oses] */ export interface OSes { total?: number; oses?: OS[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DateTimeDecimalCounts class. * @constructor * @member {string} [datetime] the ISO 8601 datetime * @member {number} [count] decimal count of the object */ export interface DateTimeDecimalCounts { datetime?: string; count?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the AvailableVersions class. * @constructor * @member {array} [versions] List of available versions. * @member {number} [totalCount] The full number of versions across all pages. */ export interface AvailableVersions { versions?: string[]; totalCount?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DateTimePercentages class. * @constructor * @member {string} [datetime] the ISO 8601 datetime * @member {number} [percentage] percentage of the object */ export interface DateTimePercentages { datetime?: string; percentage?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashFreeDevicePercentages class. * @constructor * @member {number} [averagePercentage] Average percentage * @member {array} [dailyPercentages] The crash-free percentage per day. */ export interface CrashFreeDevicePercentages { averagePercentage?: number; daily...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the Modules class. * @constructor * @member {object} [modules] */ export interface Modules { modules?: { [propertyName: string]: { [propertyName: string]: boolean } }; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashOverall class. * @constructor * @member {number} [crashCount] * @member {number} [deviceCount] */ export interface CrashOverall { crashCount?: number; deviceCount?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashesOverallItem class. * @constructor * @member {string} [crashGroupId] * @member {string} [appVersion] * @member {object} [overall] * @member {number} [overall.crashCount] * @member {number} [overall.deviceCount] */ export interface CrashesOverallItem { cr...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashGroupModel class. * @constructor * @member {string} [modelName] model's name * @member {number} [crashCount] count of model */ export interface CrashGroupModel { modelName?: string; crashCount?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashGroupModels class. * @constructor * @member {number} [crashCount] * @member {array} [modelsProperty] */ export interface CrashGroupModels { crashCount?: number; modelsProperty?: CrashGroupModel[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ErrorGroupState class. * @constructor * @member {string} state Possible values include: 'open', 'closed', 'ignored' */ export interface ErrorGroupState { state: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ErrorGroupListItem class. * @constructor * @member {string} errorGroupId * @member {string} appVersion * @member {number} count * @member {number} deviceCount * @member {date} lastOccurrence * @member {string} [exceptionType] * @member {string} [exceptionMessag...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ErrorGroups class. * @constructor * @member {string} [nextLink] * @member {array} [errorGroups] */ export interface ErrorGroups { nextLink?: string; errorGroups?: ErrorGroupListItem[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the HandledErrorReasonFrame class. * @constructor * @member {string} [className] name of the class * @member {string} [method] name of the method * @member {boolean} [classMethod] is a class method * @member {string} [file] name of the file * @member {number} [line] ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ErrorGroup class. * @constructor * @member {string} errorGroupId * @member {string} appVersion * @member {number} count * @member {number} deviceCount * @member {date} firstOccurrence * @member {date} lastOccurrence * @member {string} [exceptionType] * @member...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ErrorDownloadLink class. * @constructor * @member {string} link */ export interface ErrorDownloadLink { link: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ErrorFreeDevicePercentages class. * @constructor * @member {number} [averagePercentage] Average percentage * @member {array} [dailyPercentages] The error-free percentage per day. */ export interface ErrorFreeDevicePercentages { averagePercentage?: number; daily...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the HandledError class. * @constructor * @member {string} [errorId] * @member {date} [timestamp] * @member {string} [deviceName] * @member {string} [osVersion] * @member {string} [osType] * @member {string} [country] * @member {string} [language] */ export interfa...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the HandledErrors class. * @constructor * @member {string} [nextLink] * @member {array} [errors] Errors list. */ export interface HandledErrors { nextLink?: string; errors?: HandledError[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the HandledErrorDetails class. * @constructor * @member {string} [name] * @member {array} [reasonFrames] * @member {object} [properties] */ export interface HandledErrorDetails extends HandledError { name?: string; reasonFrames?: HandledErrorReasonFrame[]; prope...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ErrorGroupModel class. * @constructor * @member {string} [modelName] model name * @member {string} [modelCode] model code * @member {number} [errorCount] count of errors in a model */ export interface ErrorGroupModel { modelName?: string; modelCode?: string; ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ErrorGroupModels class. * @constructor * @member {number} [errorCount] * @member {array} [modelsProperty] */ export interface ErrorGroupModels { errorCount?: number; modelsProperty?: ErrorGroupModel[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ErrorGroupOperatingSystem class. * @constructor * @member {string} [operatingSystemName] OS name * @member {number} [errorCount] count of OS */ export interface ErrorGroupOperatingSystem { operatingSystemName?: string; errorCount?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ErrorGroupOperatingSystems class. * @constructor * @member {number} [errorCount] * @member {array} [operatingSystems] */ export interface ErrorGroupOperatingSystems { errorCount?: number; operatingSystems?: ErrorGroupOperatingSystem[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashGroupOperatingSystem class. * @constructor * @member {string} [operatingSystemName] OS name * @member {number} [crashCount] count of OS */ export interface CrashGroupOperatingSystem { operatingSystemName?: string; crashCount?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashGroupOperatingSystems class. * @constructor * @member {number} [crashCount] * @member {array} [operatingSystems] */ export interface CrashGroupOperatingSystems { crashCount?: number; operatingSystems?: CrashGroupOperatingSystem[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashGroupPlace class. * @constructor * @member {string} [placeName] Place name * @member {number} [crashCount] count of places */ export interface CrashGroupPlace { placeName?: string; crashCount?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashGroupPlaces class. * @constructor * @member {number} [crashCount] * @member {array} [places] */ export interface CrashGroupPlaces { crashCount?: number; places?: CrashGroupPlace[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashGroupLanguage class. * @constructor * @member {string} [languageName] language name * @member {number} [crashCount] count of languages */ export interface CrashGroupLanguage { languageName?: string; crashCount?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashGroupLanguages class. * @constructor * @member {number} [crashCount] * @member {array} [languages] */ export interface CrashGroupLanguages { crashCount?: number; languages?: CrashGroupLanguage[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashGroupCarrier class. * @constructor * @member {string} [carrierName] carrier name * @member {number} [crashCount] crash count of carrier */ export interface CrashGroupCarrier { carrierName?: string; crashCount?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashGroupCarriers class. * @constructor * @member {number} [crashCount] * @member {array} [carriers] */ export interface CrashGroupCarriers { crashCount?: number; carriers?: CrashGroupCarrier[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashGroupAndVersion class. * @constructor * @member {string} [crashGroupId] * @member {string} [appVersion] */ export interface CrashGroupAndVersion { crashGroupId?: string; appVersion?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the CrashGroupContainer class. * @constructor * @member {array} crashGroups */ export interface CrashGroupContainer { crashGroups: CrashGroupAndVersion[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the Event class. * @constructor * @member {string} [id] * @member {string} [name] * @member {number} [deviceCount] * @member {number} [previousDeviceCount] the device count of previous time * range of the event * @member {number} [count] * @member {number} [previou...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the Events class. * @constructor * @member {array} [events] * @member {number} [total] the total count of events * @member {number} [totalDevices] the active device over this period */ export interface Events { events?: Event[]; total?: number; totalDevices?: nu...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the EventCount class. * @constructor * @member {number} [totalCount] * @member {number} [previousTotalCount] * @member {array} [count] */ export interface EventCount { totalCount?: number; previousTotalCount?: number; count?: DateTimeCounts[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the EventDeviceCount class. * @constructor * @member {number} [totalDevices] * @member {number} [totalDevicesWithEvent] * @member {number} [previousTotalDevicesWithEvent] * @member {array} [devicesCount] */ export interface EventDeviceCount { totalDevices?: number;...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the EventCountPerDevice class. * @constructor * @member {number} [avgCountPerDevice] * @member {number} [previousAvgCountPerDevice] * @member {array} [countPerDevice] */ export interface EventCountPerDevice { avgCountPerDevice?: number; previousAvgCountPerDevice?:...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the EventCountPerSession class. * @constructor * @member {number} [avgCountPerSession] * @member {number} [previousAvgCountPerSession] * @member {array} [countPerSession] */ export interface EventCountPerSession { avgCountPerSession?: number; previousAvgCountPerSe...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the EventProperties class. * @constructor * Event properties during the time range * * @member {array} [eventProperties] */ export interface EventProperties { eventProperties?: string[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the EventPropertyValue class. * @constructor * An event property value with counts * * @member {string} [name] The event property value name * @member {number} [count] The count of the the event property value * @member {number} [previousCount] The count of previous ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the EventPropertyValues class. * @constructor * Event property value counts during the time range in descending order * * @member {number} [total] The total property value counts * @member {array} [values] The event property values */ export interface EventPropertyVa...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the Release class. * @constructor * @member {string} release Release Id. */ export interface Release { release: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ReleaseWithDistributionGroup class. * @constructor * @member {string} [distributionGroup] Distribution group Id. */ export interface ReleaseWithDistributionGroup extends Release { distributionGroup?: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ReleaseWithDistributionGroupAndUserId class. * @constructor * @member {uuid} [userId] Unique user Id. Will generate a new user Id if not * provided. */ export interface ReleaseWithDistributionGroupAndUserId extends ReleaseWithDistributionGroup { userId?: string;...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotifyReleasesContainer class. * @constructor * @member {array} releases */ export interface NotifyReleasesContainer { releases: ReleaseWithDistributionGroupAndUserId[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DeleteReleasesContainer class. * @constructor * @member {array} releases */ export interface DeleteReleasesContainer { releases: Release[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the GetReleasesContainer class. * @constructor * @member {array} releases */ export interface GetReleasesContainer { releases: ReleaseWithDistributionGroup[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the FilterReleasesContainer class. * @constructor * @member {array} [releases] */ export interface FilterReleasesContainer { releases?: Release[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the FilterVersionsContainerVersionsItem class. * @constructor * @member {string} version App version * @member {string} build App build number */ export interface FilterVersionsContainerVersionsItem { version: string; build: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the FilterVersionsContainer class. * @constructor * @member {array} [versions] */ export interface FilterVersionsContainer { versions?: FilterVersionsContainerVersionsItem[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ReleaseCount class. * @constructor * @member {string} releaseId * @member {string} [distributionGroup] Distribution group queried. * @member {number} uniqueCount Count of unique downloads against user id. * @member {number} totalCount Total count of downloads. */...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ReleaseCounts class. * @constructor * @member {number} [total] * @member {array} counts */ export interface ReleaseCounts { total?: number; counts: ReleaseCount[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DailySession class. * @constructor * @member {string} [datetime] the ISO 8601 datetime * @member {number} [count] */ export interface DailySession { datetime?: string; count?: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the ReleaseDailySessions class. * @constructor * @member {number} [totalSessionCounts] * @member {number} [avgSessionsPerDay] * @member {array} [sessions] Sessions per day */ export interface ReleaseDailySessions { totalSessionCounts?: number; avgSessionsPerDay?: ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DateTimeDownloadReleaseCount class. * @constructor * @member {string} [datetime] the ISO 8601 datetime * @member {number} [total] * @member {number} [unique] */ export interface DateTimeDownloadReleaseCount { datetime?: string; total?: number; unique?: numbe...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the DateTimeDownloadReleaseCounts class. * @constructor * @member {number} [total] * @member {number} [unique] * @member {array} [counts] Release Counts per day */ export interface DateTimeDownloadReleaseCounts { total?: number; unique?: number; counts?: DateTim...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowDevice class. * @constructor * Device characteristics. * * @member {string} sdkName Name of the SDK. Consists of the name of the SDK * and the platform, e.g. "appcenter.ios", "hockeysdk.android". * @member {string} sdkVersion Version of the SDK in semver f...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowLog class. * @constructor * @member {date} timestamp Log creation timestamp. * @member {uuid} installId Install ID. * @member {object} device * @member {string} [device.sdkName] Name of the SDK. Consists of the name of * the SDK and the platform, e.g. "app...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowLogContainer class. * @constructor * @member {boolean} [exceededMaxLimit] indicates if the number of available * logs are more than the max allowed return limit(100). * @member {date} [lastReceivedLogTimestamp] the timestamp of the last log * received. This...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowGenericLog class. * @constructor * Generic log. * * @member {string} type Log type. * . Possible values include: 'event', 'page', 'start_session', 'error', * 'push_installation', 'start_service', 'custom_properties' * @member {date} timestamp Log creation...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowGenericLogContainer class. * @constructor * @member {boolean} [exceededMaxLimit] indicates if the number of available * logs are more than the max allowed return limit(100). * @member {date} [lastReceivedLogTimestamp] the timestamp of the last log * receive...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowLogWithProperties class. * @constructor * @member {object} [properties] Additional key/value pair parameters. */ export interface LogFlowLogWithProperties extends LogFlowLog { properties?: { [propertyName: string]: string }; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowStartSessionLog class. * @constructor * Required explicit begin session log (a marker event for analytics service). * * @member {uuid} sessionId Session ID. */ export interface LogFlowStartSessionLog extends LogFlowLog { sessionId: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowStartServiceLog class. * @constructor * Describe a AppCenter.Start API call from the SDK. * * @member {array} [services] The list of services of the AppCenter Start API * call. */ export interface LogFlowStartServiceLog extends LogFlowLog { services?: st...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowCustomProperty class. * @constructor * @member {string} name * @member {string} type Polymorphic Discriminator */ export interface LogFlowCustomProperty { name: string; type: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowCustomPropertyLog class. * @constructor * Set or remove custom properties. * * @member {array} [properties] Custom property changes. */ export interface LogFlowCustomPropertyLog extends LogFlowLog { properties?: LogFlowCustomProperty[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowStringProperty class. * @constructor * String property. * * @member {string} value String property value. */ export interface LogFlowStringProperty extends LogFlowCustomProperty { value: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowNumberProperty class. * @constructor * Number property. * * @member {number} value Number property value. */ export interface LogFlowNumberProperty extends LogFlowCustomProperty { value: number; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowBooleanProperty class. * @constructor * Boolean property. * * @member {boolean} value Boolean property value. */ export interface LogFlowBooleanProperty extends LogFlowCustomProperty { value: boolean; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowDateTimeProperty class. * @constructor * Date and time property. * * @member {date} value Date time property value. */ export interface LogFlowDateTimeProperty extends LogFlowCustomProperty { value: Date; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowClearProperty class. * @constructor * Clear an existing property. * */ export interface LogFlowClearProperty extends LogFlowCustomProperty { }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowPageLog class. * @constructor * Page view log (as in screens or activities). * * @member {uuid} sessionId Session ID. * @member {string} name Name of the page. */ export interface LogFlowPageLog extends LogFlowLogWithProperties { sessionId: string; nam...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowEventLog class. * @constructor * Event log. * * @member {uuid} sessionId Session ID. * @member {uuid} id Unique identifier for this event. * @member {string} name Name of the event. */ export interface LogFlowEventLog extends LogFlowLogWithProperties { ...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowPushInstallationLog class. * @constructor * Push installation Information. * * @member {string} pushToken The PNS handle for this installation. */ export interface LogFlowPushInstallationLog extends LogFlowLog { pushToken: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the LogFlowErrorLog class. * @constructor * Error log. * * @member {uuid} sessionId Session ID. * @member {uuid} id Error identifier. * @member {number} [appLaunchToffset] Corresponds to the number of * milliseconds elapsed between the time the error occurred and th...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationTarget class. * @constructor * Generic notification target. * * @member {string} type Polymorphic Discriminator */ export interface NotificationTarget { type: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationOverviewResult class. * @constructor * Notification statistics * * @member {string} notificationId Notification id. * @member {string} [name] Notification name * @member {object} [notificationTarget] * @member {string} [notificationTarget.type] Polym...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationsListResult class. * @constructor * List of notifications * * @member {array} values * @member {number} [total] the total count of notifications * @member {string} [nextLink] */ export interface NotificationsListResult { values: NotificationOvervie...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationContent class. * @constructor * Notification definition object * * @member {string} name Notification name * @member {string} [title] Notification title * @member {string} body Notification body * @member {object} [customData] Notification custom dat...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationFailureOutcomeCount class. * @constructor * Notification failure outcome count * * @member {string} [failureReason] The reason of the notification failure * @member {number} [count] count of this type of failure */ export interface NotificationFailure...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationDetailsResult class. * @constructor * Notification statistics * * @member {object} notificationContent * @member {string} [notificationContent.name] Notification name * @member {string} [notificationContent.title] Notification title * @member {string...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationIdList class. * @constructor * List of notification Ids * * @member {array} values List of notification Ids. */ export interface NotificationIdList { values: string[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationDefinition class. * @constructor * Notification definition object * * @member {object} [notificationTarget] * @member {string} [notificationTarget.type] Polymorphic Discriminator * @member {object} notificationContent * @member {string} [notification...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationSendSucceededResult class. * @constructor * Notification send succeeded. * * @member {string} notificationId The unique notification identifier. */ export interface NotificationSendSucceededResult { notificationId: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationTargetAudiences class. * @constructor * Notification target audiences. * * @member {array} audiences List of target audiences. */ export interface NotificationTargetAudiences extends NotificationTarget { audiences: string[]; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationTargetDevices class. * @constructor * Notification target devices. If null, all devices will be * targeted(broadcast). * * @member {array} devices List of target devices. */ export interface NotificationTargetDevices extends NotificationTarget { dev...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationConfig class. * @constructor * Generic notification configuration. * * @member {string} type Polymorphic Discriminator */ export interface NotificationConfig { type: string; }
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationConfigApple class. * @constructor * Apple notification certificate configuration. * * @member {string} endpointType Possible values include: 'production', * 'sandbox' * @member {string} certEncoded Base64 encoded certificate string. * @member {string...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript
InterfaceDeclaration
/** * @class * Initializes a new instance of the NotificationConfigAppleToken class. * @constructor * Apple notification auth token configuration. * * @member {string} keyId A 10-character key identifier (kid). * @member {string} id Application ID. * @member {string} prefix Application prefix. * @member {strin...
AndreyMitsyk/appcenter-cli
src/util/apis/generated/models/index.d.ts
TypeScript