Required role: | REGISUserRole |
POST | /DynamicsCRM/Donation/{guid}/Note |
---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class CRMNoteResponse implements IConvertible
{
String? subject;
String? text;
String? owner_first_name;
String? owner_last_name;
String? file_base64;
String? filename;
int? filesize;
String? mimetype;
DateTime? added_date;
CRMNoteResponse({this.subject,this.text,this.owner_first_name,this.owner_last_name,this.file_base64,this.filename,this.filesize,this.mimetype,this.added_date});
CRMNoteResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
subject = json['subject'];
text = json['text'];
owner_first_name = json['owner_first_name'];
owner_last_name = json['owner_last_name'];
file_base64 = json['file_base64'];
filename = json['filename'];
filesize = json['filesize'];
mimetype = json['mimetype'];
added_date = JsonConverters.fromJson(json['added_date'],'DateTime',context!);
return this;
}
Map<String, dynamic> toJson() => {
'subject': subject,
'text': text,
'owner_first_name': owner_first_name,
'owner_last_name': owner_last_name,
'file_base64': file_base64,
'filename': filename,
'filesize': filesize,
'mimetype': mimetype,
'added_date': JsonConverters.toJson(added_date,'DateTime',context!)
};
getTypeName() => "CRMNoteResponse";
TypeContext? context = _ctx;
}
class CRMDonationNoteResponse extends CRMNoteResponse implements IConvertible
{
String? first_name;
String? last_name;
CRMDonationNoteResponse({this.first_name,this.last_name});
CRMDonationNoteResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
first_name = json['first_name'];
last_name = json['last_name'];
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'first_name': first_name,
'last_name': last_name
});
getTypeName() => "CRMDonationNoteResponse";
TypeContext? context = _ctx;
}
class CRMDonationNoteRequest implements IConvertible
{
String? guid;
CRMDonationNoteRequest({this.guid});
CRMDonationNoteRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
guid = json['guid'];
return this;
}
Map<String, dynamic> toJson() => {
'guid': guid
};
getTypeName() => "CRMDonationNoteRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
'CRMNoteResponse': TypeInfo(TypeOf.Class, create:() => CRMNoteResponse()),
'CRMDonationNoteResponse': TypeInfo(TypeOf.Class, create:() => CRMDonationNoteResponse()),
'CRMDonationNoteRequest': TypeInfo(TypeOf.Class, create:() => CRMDonationNoteRequest()),
});
Dart CRMDonationNoteRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /DynamicsCRM/Donation/{guid}/Note HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"guid":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"first_name":"String","last_name":"String","subject":"String","text":"String","owner_first_name":"String","owner_last_name":"String","file_base64":"String","filename":"String","filesize":0,"mimetype":"String","added_date":"0001-01-01T00:00:00.0000000"}