# Plaid::LiabilitiesObject ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **credit** | [**Array<CreditCardLiability>**](CreditCardLiability.md) | The credit accounts returned. If no credit accounts are returned, `credit` will not be present in the schema. | [optional] | | **mortgage** | [**Array<MortgageLiability>**](MortgageLiability.md) | The mortgage accounts returned. If no mortgage accounts are returned, `mortgage` will not be present in the schema. | [optional] | | **student** | [**Array<StudentLoan>**](StudentLoan.md) | The student loan accounts returned. If no student loan accounts are returned, `student` will not be present in the schema. | [optional] | ## Example ```ruby require 'plaid' instance = Plaid::LiabilitiesObject.new( credit: null, mortgage: null, student: null ) ```