| GET | /club/referral-types | List of referral types. | 
|---|
import 'package:servicestack/servicestack.dart';
class ApiDtoBase implements IApiDtoBase, IConvertible
{
    String? ApiKey;
    int? StoreId;
    int? ChainId;
    ApiDtoBase({this.ApiKey,this.StoreId,this.ChainId});
    ApiDtoBase.fromJson(Map<String, dynamic> json) { fromMap(json); }
    fromMap(Map<String, dynamic> json) {
        ApiKey = json['ApiKey'];
        StoreId = json['StoreId'];
        ChainId = json['ChainId'];
        return this;
    }
    Map<String, dynamic> toJson() => {
        'ApiKey': ApiKey,
        'StoreId': StoreId,
        'ChainId': ChainId
    };
    getTypeName() => "ApiDtoBase";
    TypeContext? context = _ctx;
}
enum RestrictedResourceType
{
    Store,
    Chain,
    User,
    Undefined,
}
class GetReferralTypesRequest extends ApiDtoBase implements IRestrictedApiRequest, IConvertible
{
    /**
    * IP address of the end user
    */
    // @ApiMember(Description="IP address of the end user", Name="X-Forwarded-For", ParameterType="header")
    String? XForwardedFor;
    /**
    * Api Key - grants access to resources
    */
    // @ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query")
    String? ApiKey;
    /**
    * Either StoreId or ChainId is required
    */
    // @ApiMember(DataType="integer", Description="Either StoreId or ChainId is required", Name="ChainId", ParameterType="query")
    int? ChainId;
    /**
    * Either StoreId or ChainId is required
    */
    // @ApiMember(DataType="integer", Description="Either StoreId or ChainId is required", Name="StoreId", ParameterType="query")
    int? StoreId;
    int? RestrictedId;
    RestrictedResourceType? RestrictedResourceType;
    GetReferralTypesRequest({this.XForwardedFor,this.ApiKey,this.ChainId,this.StoreId,this.RestrictedId,this.RestrictedResourceType});
    GetReferralTypesRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        XForwardedFor = json['XForwardedFor'];
        ApiKey = json['ApiKey'];
        ChainId = json['ChainId'];
        StoreId = json['StoreId'];
        RestrictedId = json['RestrictedId'];
        RestrictedResourceType = JsonConverters.fromJson(json['RestrictedResourceType'],'RestrictedResourceType',context!);
        return this;
    }
    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'XForwardedFor': XForwardedFor,
        'ApiKey': ApiKey,
        'ChainId': ChainId,
        'StoreId': StoreId,
        'RestrictedId': RestrictedId,
        'RestrictedResourceType': JsonConverters.toJson(RestrictedResourceType,'RestrictedResourceType',context!)
    });
    getTypeName() => "GetReferralTypesRequest";
    TypeContext? context = _ctx;
}
class ApiGenericType implements IConvertible
{
    int? Id;
    String? Name;
    int? StoreId;
    int? ChainId;
    ApiGenericType({this.Id,this.Name,this.StoreId,this.ChainId});
    ApiGenericType.fromJson(Map<String, dynamic> json) { fromMap(json); }
    fromMap(Map<String, dynamic> json) {
        Id = json['Id'];
        Name = json['Name'];
        StoreId = json['StoreId'];
        ChainId = json['ChainId'];
        return this;
    }
    Map<String, dynamic> toJson() => {
        'Id': Id,
        'Name': Name,
        'StoreId': StoreId,
        'ChainId': ChainId
    };
    getTypeName() => "ApiGenericType";
    TypeContext? context = _ctx;
}
class GetReferralTypesResponseDto implements IConvertible
{
    List<ApiGenericType>? ReferralTypes;
    GetReferralTypesResponseDto({this.ReferralTypes});
    GetReferralTypesResponseDto.fromJson(Map<String, dynamic> json) { fromMap(json); }
    fromMap(Map<String, dynamic> json) {
        ReferralTypes = JsonConverters.fromJson(json['ReferralTypes'],'List<ApiGenericType>',context!);
        return this;
    }
    Map<String, dynamic> toJson() => {
        'ReferralTypes': JsonConverters.toJson(ReferralTypes,'List<ApiGenericType>',context!)
    };
    getTypeName() => "GetReferralTypesResponseDto";
    TypeContext? context = _ctx;
}
class GetReferralTypesResponse extends GetReferralTypesResponseDto implements IConvertible
{
    List<ApiGenericType>? ReferralTypes;
    GetReferralTypesResponse({this.ReferralTypes});
    GetReferralTypesResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        ReferralTypes = JsonConverters.fromJson(json['ReferralTypes'],'List<ApiGenericType>',context!);
        return this;
    }
    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'ReferralTypes': JsonConverters.toJson(ReferralTypes,'List<ApiGenericType>',context!)
    });
    getTypeName() => "GetReferralTypesResponse";
    TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'clubready.com', types: <String, TypeInfo> {
    'ApiDtoBase': TypeInfo(TypeOf.Class, create:() => ApiDtoBase()),
    'RestrictedResourceType': TypeInfo(TypeOf.Enum, enumValues:RestrictedResourceType.values),
    'GetReferralTypesRequest': TypeInfo(TypeOf.Class, create:() => GetReferralTypesRequest()),
    'ApiGenericType': TypeInfo(TypeOf.Class, create:() => ApiGenericType()),
    'GetReferralTypesResponseDto': TypeInfo(TypeOf.Class, create:() => GetReferralTypesResponseDto()),
    'List<ApiGenericType>': TypeInfo(TypeOf.Class, create:() => <ApiGenericType>[]),
    'GetReferralTypesResponse': TypeInfo(TypeOf.Class, create:() => GetReferralTypesResponse()),
});
Dart GetReferralTypesRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /club/referral-types HTTP/1.1 Host: clubready.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
	ReferralTypes: 
	[
		{
			Id: 0,
			Name: String,
			StoreId: 0,
			ChainId: 0
		}
	]
}