Required role: | superadmin |
POST | /superadmin/company/{CompanyId}/comments | Adds a comment to the company. |
---|
import 'package:servicestack/servicestack.dart';
enum CommentsType
{
NormalComment,
CallBackPhoneComment,
CallBackEmailComment,
CallBackMeetingBookedComment,
CallBackNotInterestedComment,
}
class CommentsTypeResponse implements IConvertible
{
int? Id;
String? Name;
String? Description;
CommentsTypeResponse({this.Id,this.Name,this.Description});
CommentsTypeResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Id = json['Id'];
Name = json['Name'];
Description = json['Description'];
return this;
}
Map<String, dynamic> toJson() => {
'Id': Id,
'Name': Name,
'Description': Description
};
getTypeName() => "CommentsTypeResponse";
TypeContext? context = _ctx;
}
class CompanyCommentsResponse implements IConvertible
{
// @ApiMember()
String? CompanyId;
// @ApiMember()
int? Id;
// @ApiMember(IsRequired=true)
String? Comment;
// @ApiMember(IsRequired=true)
CommentsType? CommentTypeId;
// @ApiMember(IsRequired=true)
CommentsTypeResponse? CommentType;
/**
* The updated date
*/
// @ApiMember(Description="The updated date")
DateTime? Updated;
/**
* The created date
*/
// @ApiMember(Description="The created date")
DateTime? Created;
/**
* The created by
*/
// @ApiMember(Description="The created by")
String? CreatedBy;
CompanyCommentsResponse({this.CompanyId,this.Id,this.Comment,this.CommentTypeId,this.CommentType,this.Updated,this.Created,this.CreatedBy});
CompanyCommentsResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
CompanyId = json['CompanyId'];
Id = json['Id'];
Comment = json['Comment'];
CommentTypeId = JsonConverters.fromJson(json['CommentTypeId'],'CommentsType',context!);
CommentType = JsonConverters.fromJson(json['CommentType'],'CommentsTypeResponse',context!);
Updated = JsonConverters.fromJson(json['Updated'],'DateTime',context!);
Created = JsonConverters.fromJson(json['Created'],'DateTime',context!);
CreatedBy = json['CreatedBy'];
return this;
}
Map<String, dynamic> toJson() => {
'CompanyId': CompanyId,
'Id': Id,
'Comment': Comment,
'CommentTypeId': JsonConverters.toJson(CommentTypeId,'CommentsType',context!),
'CommentType': JsonConverters.toJson(CommentType,'CommentsTypeResponse',context!),
'Updated': JsonConverters.toJson(Updated,'DateTime',context!),
'Created': JsonConverters.toJson(Created,'DateTime',context!),
'CreatedBy': CreatedBy
};
getTypeName() => "CompanyCommentsResponse";
TypeContext? context = _ctx;
}
// @ApiResponse(Description="", StatusCode=400)
// @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401)
class CreateCompanyCommentSuperAdminUser implements ICompany, IConvertible
{
/**
* Enter the companyId for the customer
*/
// @ApiMember(Description="Enter the companyId for the customer", IsRequired=true, ParameterType="query")
String? CompanyId;
// @ApiMember(IsRequired=true)
String? Comment;
// @ApiMember(IsRequired=true)
CommentsType? CommentType;
CreateCompanyCommentSuperAdminUser({this.CompanyId,this.Comment,this.CommentType});
CreateCompanyCommentSuperAdminUser.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
CompanyId = json['CompanyId'];
Comment = json['Comment'];
CommentType = JsonConverters.fromJson(json['CommentType'],'CommentsType',context!);
return this;
}
Map<String, dynamic> toJson() => {
'CompanyId': CompanyId,
'Comment': Comment,
'CommentType': JsonConverters.toJson(CommentType,'CommentsType',context!)
};
getTypeName() => "CreateCompanyCommentSuperAdminUser";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: <String, TypeInfo> {
'CommentsType': TypeInfo(TypeOf.Enum, enumValues:CommentsType.values),
'CommentsTypeResponse': TypeInfo(TypeOf.Class, create:() => CommentsTypeResponse()),
'CompanyCommentsResponse': TypeInfo(TypeOf.Class, create:() => CompanyCommentsResponse()),
'CreateCompanyCommentSuperAdminUser': TypeInfo(TypeOf.Class, create:() => CreateCompanyCommentSuperAdminUser()),
});
Dart CreateCompanyCommentSuperAdminUser DTOs
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 /superadmin/company/{CompanyId}/comments HTTP/1.1
Host: testapi.bokamera.se
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"CompanyId":"00000000-0000-0000-0000-000000000000","Comment":"String","CommentType":"NormalComment"}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"CompanyId":"00000000-0000-0000-0000-000000000000","Id":0,"Comment":"String","CommentTypeId":"NormalComment","CommentType":{"Id":0,"Name":"String","Description":"String"},"CreatedBy":"String"}