digitaluapi

<back to all web services

PaymentPlanDetailsLookup

Requires Authentication
Requires any of the roles:Client, Admin, Partner
The following routes are available for this service:
GET/payment_plan_details
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
import com.google.gson.annotations.*;
import com.google.gson.reflect.*;

public class dtos
{

    @DataContract
    public static class PaymentPlanDetailsLookup
    {
        @DataMember(Order=2)
        public Long PaymentPlansId = null;

        @DataMember(Order=3)
        public Date PlannedDate = null;

        @DataMember(Order=4)
        public Double PlannedAmount = null;

        @DataMember(Order=5)
        public Integer PlannedCurrenciesId = null;

        @DataMember(Order=6)
        public Long PaymentsId = null;

        @DataMember(Order=7)
        public Long StatusCodesId = null;
        
        public Long getPaymentPlansId() { return PaymentPlansId; }
        public PaymentPlanDetailsLookup setPaymentPlansId(Long value) { this.PaymentPlansId = value; return this; }
        public Date getPlannedDate() { return PlannedDate; }
        public PaymentPlanDetailsLookup setPlannedDate(Date value) { this.PlannedDate = value; return this; }
        public Double getPlannedAmount() { return PlannedAmount; }
        public PaymentPlanDetailsLookup setPlannedAmount(Double value) { this.PlannedAmount = value; return this; }
        public Integer getPlannedCurrenciesId() { return PlannedCurrenciesId; }
        public PaymentPlanDetailsLookup setPlannedCurrenciesId(Integer value) { this.PlannedCurrenciesId = value; return this; }
        public Long getPaymentsId() { return PaymentsId; }
        public PaymentPlanDetailsLookup setPaymentsId(Long value) { this.PaymentsId = value; return this; }
        public Long getStatusCodesId() { return StatusCodesId; }
        public PaymentPlanDetailsLookup setStatusCodesId(Long value) { this.StatusCodesId = value; return this; }
    }

}

Java PaymentPlanDetailsLookup 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.

GET /payment_plan_details HTTP/1.1 
Host: duengageapi.uat.scadsoftware.com 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

[{"PaymentPlansId":0,"PlannedDate":"0001-01-01T00:00:00.0000000","PlannedAmount":0,"PlannedCurrenciesId":0,"PaymentsId":0,"StatusCodesId":0,"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}]