| POST | /SamlInfo |
|---|
import 'package:servicestack/servicestack.dart';
class SamlInfo implements IConvertible
{
String? EmailDomain;
String? Workspace;
String? LoginType;
String? RedirectUri;
String? Url;
SamlInfo({this.EmailDomain,this.Workspace,this.LoginType,this.RedirectUri,this.Url});
SamlInfo.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
EmailDomain = json['EmailDomain'];
Workspace = json['Workspace'];
LoginType = json['LoginType'];
RedirectUri = json['RedirectUri'];
Url = json['Url'];
return this;
}
Map<String, dynamic> toJson() => {
'EmailDomain': EmailDomain,
'Workspace': Workspace,
'LoginType': LoginType,
'RedirectUri': RedirectUri,
'Url': Url
};
getTypeName() => "SamlInfo";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'dev.fieldsquared.com', types: <String, TypeInfo> {
'SamlInfo': TypeInfo(TypeOf.Class, create:() => SamlInfo()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /SamlInfo HTTP/1.1
Host: dev.fieldsquared.com
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"EmailDomain":"String","Workspace":"String","LoginType":"String","RedirectUri":"String","Url":"String"}