| GET | /ETS/Check-Quote-Max-Quantity |
|---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class ETSCheckQuoteMaxQuantity implements IConvertible
{
int? EntityContactId;
ETSCheckQuoteMaxQuantity({this.EntityContactId});
ETSCheckQuoteMaxQuantity.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
EntityContactId = json['EntityContactId'];
return this;
}
Map<String, dynamic> toJson() => {
'EntityContactId': EntityContactId
};
getTypeName() => "ETSCheckQuoteMaxQuantity";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'internal.thebunkerbridge.com', types: <String, TypeInfo> {
'ETSCheckQuoteMaxQuantity': TypeInfo(TypeOf.Class, create:() => ETSCheckQuoteMaxQuantity()),
});
Dart ETSCheckQuoteMaxQuantity DTOs
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 /ETS/Check-Quote-Max-Quantity HTTP/1.1 Host: internal.thebunkerbridge.com Accept: text/jsonl