sfgboxapi

<back to all web services

TrackingLog

The following routes are available for this service:
POST/trackinglog
import 'package:servicestack/servicestack.dart';

class TrackingLog implements IConvertible
{
    int? tenantsId;
    int? appUserId;
    int? mediaId;
    int? mediaPercentage;
    int? score;
    String? menuItems;
    String? entities;
    String? ipAddress;
    String? country;
    DateTime? accessDateTime;

    TrackingLog({this.tenantsId,this.appUserId,this.mediaId,this.mediaPercentage,this.score,this.menuItems,this.entities,this.ipAddress,this.country,this.accessDateTime});
    TrackingLog.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        tenantsId = json['tenantsId'];
        appUserId = json['appUserId'];
        mediaId = json['mediaId'];
        mediaPercentage = json['mediaPercentage'];
        score = json['score'];
        menuItems = json['menuItems'];
        entities = json['entities'];
        ipAddress = json['ipAddress'];
        country = json['country'];
        accessDateTime = JsonConverters.fromJson(json['accessDateTime'],'DateTime',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'tenantsId': tenantsId,
        'appUserId': appUserId,
        'mediaId': mediaId,
        'mediaPercentage': mediaPercentage,
        'score': score,
        'menuItems': menuItems,
        'entities': entities,
        'ipAddress': ipAddress,
        'country': country,
        'accessDateTime': JsonConverters.toJson(accessDateTime,'DateTime',context!)
    };

    getTypeName() => "TrackingLog";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'sfgboxapi.dev.scadsoftware.com', types: <String, TypeInfo> {
    'TrackingLog': TypeInfo(TypeOf.Class, create:() => TrackingLog()),
});

Dart TrackingLog DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /trackinglog HTTP/1.1 
Host: sfgboxapi.dev.scadsoftware.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<TrackingLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/sfgboxapi.ServiceModel">
  <AccessDateTime>0001-01-01T00:00:00</AccessDateTime>
  <AppUserId>0</AppUserId>
  <Country>String</Country>
  <Entities>String</Entities>
  <IPAddress>String</IPAddress>
  <MediaId>0</MediaId>
  <MediaPercentage>0</MediaPercentage>
  <MenuItems>String</MenuItems>
  <Score>0</Score>
  <TenantsId>0</TenantsId>
</TrackingLog>