Go-to-Light Service 4.0.0.2397 - 121 - API License to Cloud Demo

<back to all web services

StopTouchConfiguration

Requires Authentication
The following routes are available for this service:
All Verbs/StopTouchConfiguration
import 'package:servicestack/servicestack.dart';

class StopTouchConfiguration implements IConvertible
{
    /**
    * Owner
    */
    // @ApiMember(Description="Owner", IsRequired=true)
    String? Owner;

    StopTouchConfiguration({this.Owner});
    StopTouchConfiguration.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        Owner = json['Owner'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'Owner': Owner
    };

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

TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: <String, TypeInfo> {
    'StopTouchConfiguration': TypeInfo(TypeOf.Class, create:() => StopTouchConfiguration()),
});

Dart StopTouchConfiguration DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

POST /StopTouchConfiguration HTTP/1.1 
Host: clouddemo.pickeos.com 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"Owner":"String"}