Required role: | REGISUserRole |
POST | /Rates/{term}/{rate_code}/Update |
---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class RateUpdateRequest implements IConvertible
{
String? authorizing_uuid;
String? rate_code;
String? rate_description;
String? term;
double? charge;
double? credit;
double? percentage;
double? budget;
bool? is_benefit;
bool? is_financial_aid;
RateUpdateRequest({this.authorizing_uuid,this.rate_code,this.rate_description,this.term,this.charge,this.credit,this.percentage,this.budget,this.is_benefit,this.is_financial_aid});
RateUpdateRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
authorizing_uuid = json['authorizing_uuid'];
rate_code = json['rate_code'];
rate_description = json['rate_description'];
term = json['term'];
charge = JsonConverters.toDouble(json['charge']);
credit = JsonConverters.toDouble(json['credit']);
percentage = JsonConverters.toDouble(json['percentage']);
budget = JsonConverters.toDouble(json['budget']);
is_benefit = json['is_benefit'];
is_financial_aid = json['is_financial_aid'];
return this;
}
Map<String, dynamic> toJson() => {
'authorizing_uuid': authorizing_uuid,
'rate_code': rate_code,
'rate_description': rate_description,
'term': term,
'charge': charge,
'credit': credit,
'percentage': percentage,
'budget': budget,
'is_benefit': is_benefit,
'is_financial_aid': is_financial_aid
};
getTypeName() => "RateUpdateRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
'RateUpdateRequest': TypeInfo(TypeOf.Class, create:() => RateUpdateRequest()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Rates/{term}/{rate_code}/Update HTTP/1.1
Host: data.regent-college.edu
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"authorizing_uuid":"String","rate_code":"String","rate_description":"String","term":"String","charge":0,"credit":0,"percentage":0,"budget":0,"is_benefit":false,"is_financial_aid":false}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}