AlbaApi

<back to all web services

SectionContentGetReq

The following routes are available for this service:
All Verbs/content/{Country}/{Lang}/{Section}
All Verbs/content/{Country}/{Lang}/{Section}/{SubSection}
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';

class Entity implements IEntity, IConvertible
{
    String? id;

    Entity({this.id});
    Entity.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id
    };

    getTypeName() => "Entity";
    TypeContext? context = _ctx;
}

class Content extends Entity implements IConvertible
{
    String? section;
    String? itemId;
    String? itemCode;
    String? country;
    String? lang;
    String? app;
    String? companyId;
    String? company;
    Map<String,String?>? elements;

    Content({this.section,this.itemId,this.itemCode,this.country,this.lang,this.app,this.companyId,this.company,this.elements});
    Content.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        section = json['section'];
        itemId = json['itemId'];
        itemCode = json['itemCode'];
        country = json['country'];
        lang = json['lang'];
        app = json['app'];
        companyId = json['companyId'];
        company = json['company'];
        elements = JsonConverters.toStringMap(json['elements']);
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'section': section,
        'itemId': itemId,
        'itemCode': itemCode,
        'country': country,
        'lang': lang,
        'app': app,
        'companyId': companyId,
        'company': company,
        'elements': elements
    });

    getTypeName() => "Content";
    TypeContext? context = _ctx;
}

class SectionContentGetReq implements IConvertible
{
    String? country;
    String? lang;
    String? section;
    String? subSection;
    String? environment;

    SectionContentGetReq({this.country,this.lang,this.section,this.subSection,this.environment});
    SectionContentGetReq.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        country = json['country'];
        lang = json['lang'];
        section = json['section'];
        subSection = json['subSection'];
        environment = json['environment'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'country': country,
        'lang': lang,
        'section': section,
        'subSection': subSection,
        'environment': environment
    };

    getTypeName() => "SectionContentGetReq";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'hcbtas_q_albamfs_api.azurewebsites.net', types: <String, TypeInfo> {
    'Entity': TypeInfo(TypeOf.Class, create:() => Entity()),
    'Content': TypeInfo(TypeOf.Class, create:() => Content()),
    'SectionContentGetReq': TypeInfo(TypeOf.Class, create:() => SectionContentGetReq()),
});

Dart SectionContentGetReq DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /content/{Country}/{Lang}/{Section} HTTP/1.1 
Host: hcbtas-q-albamfs-api.azurewebsites.net 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"country":"String","lang":"String","section":"String","subSection":"String","environment":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"section":"String","itemId":"String","itemCode":"String","country":"String","lang":"String","app":"String","companyId":"String","company":"String","elements":{"String":"String"},"id":"String"}