| GET | /v4/links | ||
|---|---|---|---|
| GET | /v4/links/{Id} |
import 'package:servicestack/servicestack.dart';
// @DataContract
class V4BaseRequest implements IConvertible
{
V4BaseRequest();
V4BaseRequest.fromJson(Map<String, dynamic> json) : super();
fromMap(Map<String, dynamic> json) {
return this;
}
Map<String, dynamic> toJson() => {};
getTypeName() => "V4BaseRequest";
TypeContext? context = _ctx;
}
// @DataContract
class V4BaseResponse implements IConvertible
{
// @DataMember(Name="status")
ResponseStatus? status;
V4BaseResponse({this.status});
V4BaseResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
status = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
return this;
}
Map<String, dynamic> toJson() => {
'status': JsonConverters.toJson(status,'ResponseStatus',context!)
};
getTypeName() => "V4BaseResponse";
TypeContext? context = _ctx;
}
enum LinkType
{
None,
Simple,
Split,
Interstitial,
Advanced,
Collection,
}
class RefreshableMetadata implements IRefreshableMetadata, IConvertible
{
DateTime? createdDate;
DateTime? updatedDate;
RefreshableMetadata({this.createdDate,this.updatedDate});
RefreshableMetadata.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
createdDate = JsonConverters.fromJson(json['createdDate'],'DateTime',context!);
updatedDate = JsonConverters.fromJson(json['updatedDate'],'DateTime',context!);
return this;
}
Map<String, dynamic> toJson() => {
'createdDate': JsonConverters.toJson(createdDate,'DateTime',context!),
'updatedDate': JsonConverters.toJson(updatedDate,'DateTime',context!)
};
getTypeName() => "RefreshableMetadata";
TypeContext? context = _ctx;
}
class VersionedRefreshableMetadata extends RefreshableMetadata implements IConvertible
{
DateTime? versionCreatedDate;
VersionedRefreshableMetadata({this.versionCreatedDate});
VersionedRefreshableMetadata.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
versionCreatedDate = JsonConverters.fromJson(json['versionCreatedDate'],'DateTime',context!);
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'versionCreatedDate': JsonConverters.toJson(versionCreatedDate,'DateTime',context!)
});
getTypeName() => "VersionedRefreshableMetadata";
TypeContext? context = _ctx;
}
abstract class IUserLink
{
String? url;
String? baseCode;
LinkType? linkType;
String? typeDefinitionPublicId;
VersionedRefreshableMetadata? metadata;
}
// @DataContract
class GetUserLinkResponse extends V4BaseResponse implements IGetUserLinkResponse, IConvertible
{
// @DataMember(Name="data")
IUserLink? data;
GetUserLinkResponse({this.data});
GetUserLinkResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
data = JsonConverters.fromJson(json['data'],'IUserLink',context!);
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'data': JsonConverters.toJson(data,'IUserLink',context!)
});
getTypeName() => "GetUserLinkResponse";
TypeContext? context = _ctx;
}
// @DataContract
class GetUserLinkRequest extends V4BaseRequest implements IConvertible
{
// @DataMember(Name="id")
String? id;
// @DataMember(Name="username")
String? username;
// @DataMember(Name="groupId")
int? groupId;
GetUserLinkRequest({this.id,this.username,this.groupId});
GetUserLinkRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
id = json['id'];
username = json['username'];
groupId = json['groupId'];
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'id': id,
'username': username,
'groupId': groupId
});
getTypeName() => "GetUserLinkRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'shortlinks_api.qa.platform.georiot.com', types: <String, TypeInfo> {
'V4BaseRequest': TypeInfo(TypeOf.Class, create:() => V4BaseRequest()),
'V4BaseResponse': TypeInfo(TypeOf.Class, create:() => V4BaseResponse()),
'LinkType': TypeInfo(TypeOf.Enum, enumValues:LinkType.values),
'RefreshableMetadata': TypeInfo(TypeOf.Class, create:() => RefreshableMetadata()),
'VersionedRefreshableMetadata': TypeInfo(TypeOf.Class, create:() => VersionedRefreshableMetadata()),
'IUserLink': TypeInfo(TypeOf.Interface),
'GetUserLinkResponse': TypeInfo(TypeOf.Class, create:() => GetUserLinkResponse()),
'GetUserLinkRequest': TypeInfo(TypeOf.Class, create:() => GetUserLinkRequest()),
});
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.
GET /v4/links HTTP/1.1 Host: shortlinks-api.qa.platform.georiot.com Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"status":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}