plaid / plaid-go

go bindings for Plaid

Home Page:https://plaid.com/docs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mortgages missing from GetLiabilitiesResponse

dbusley opened this issue · comments

I'm currently unable to pull the mortgages from the liabilities response because it's stored in the json under "mortgages" but that element is missing in the response

type GetLiabilitiesResponse struct {
	APIResponse
	Accounts    []Account `json:"accounts"`
	Item        Item      `json:"item"`
	Liabilities struct {
		Student         []StudentLoanLiability `json:"student"`
		Credit          []CreditLiability      `json:"credit"`
	} `json:"liabilities"`
}