// @DataContract
export class AnalyticsLogInfo
{
// @DataMember(Order=1)
public id: number;
// @DataMember(Order=2)
public dateTime: string;
// @DataMember(Order=3)
public browser: string;
// @DataMember(Order=4)
public device: string;
// @DataMember(Order=5)
public bot: string;
// @DataMember(Order=6)
public op: string;
// @DataMember(Order=7)
public userId: string;
// @DataMember(Order=8)
public userName: string;
// @DataMember(Order=9)
public apiKey: string;
// @DataMember(Order=10)
public ip: string;
public constructor(init?: Partial<AnalyticsLogInfo>) { (Object as any).assign(this, init); }
}
// @DataContract
export class GetAnalyticsInfoResponse
{
// @DataMember(Order=1)
public months: string[];
// @DataMember(Order=2)
public result: AnalyticsLogInfo;
// @DataMember(Order=3)
public responseStatus: ResponseStatus;
public constructor(init?: Partial<GetAnalyticsInfoResponse>) { (Object as any).assign(this, init); }
}
// @DataContract
export class GetAnalyticsInfo implements IGet
{
// @DataMember(Order=1)
public month?: string;
// @DataMember(Order=2)
public type: string;
// @DataMember(Order=3)
public op: string;
// @DataMember(Order=4)
public apiKey: string;
// @DataMember(Order=5)
public userId: string;
// @DataMember(Order=6)
public ip: string;
public constructor(init?: Partial<GetAnalyticsInfo>) { (Object as any).assign(this, init); }
}
TypeScript GetAnalyticsInfo DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsv/reply/GetAnalyticsInfo HTTP/1.1
Host: test.servicestack.net
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
month: 0001-01-01,
type: String,
op: String,
apiKey: String,
userId: String,
ip: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
months:
[
String
],
result:
{
id: 0,
dateTime: 0001-01-01,
browser: String,
device: String,
bot: String,
op: String,
userId: String,
userName: String,
apiKey: String,
ip: String
},
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}