ShortlinksAPI

<back to all web services

GetUserLinkRequest

Requires Authentication
The following routes are available for this service:
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()),
});

Dart GetUserLinkRequest DTOs

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

HTTP + XML

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: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<GetUserLinkResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShortlinksAPI.ServiceModel.V4.Responses">
  <status xmlns:d2p1="http://schemas.servicestack.net/types">
    <d2p1:ErrorCode>String</d2p1:ErrorCode>
    <d2p1:Message>String</d2p1:Message>
    <d2p1:StackTrace>String</d2p1:StackTrace>
    <d2p1:Errors>
      <d2p1:ResponseError>
        <d2p1:ErrorCode>String</d2p1:ErrorCode>
        <d2p1:FieldName>String</d2p1:FieldName>
        <d2p1:Message>String</d2p1:Message>
        <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringstring>
            <d5p1:Key>String</d5p1:Key>
            <d5p1:Value>String</d5p1:Value>
          </d5p1:KeyValueOfstringstring>
        </d2p1:Meta>
      </d2p1:ResponseError>
    </d2p1:Errors>
    <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>String</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </d2p1:Meta>
  </status>
  <data i:nil="true" />
</GetUserLinkResponse>