@fullstory/server-api-client
Version:
The official FullStory server API client SDK for NodeJS.
26 lines (25 loc) • 622 B
TypeScript
/**
* This file is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Generated from schema: fullstory.v2.events.LocationContext
* Do not edit manually.
*/
/**
* @interface LocationContext The location context in which the events are attached to.
*/
export interface LocationContext {
/**
* ISO 3166-1 alpha-2 standard country code.
*/
'country'?: string;
/**
* ISO-3166-2 standard region code.
*/
'region'?: string;
/**
* Name of the city.
*/
'city'?: string;
'latitude'?: number;
'longitude'?: number;
'ip_address'?: string;
}