Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.78 KB

PayerPayeeRelationship.md

File metadata and controls

38 lines (32 loc) · 1.78 KB

Synctera::PayerPayeeRelationship

Properties

Name Type Description Notes
additional_data PayerPayeeAdditionalData
creation_time Time The date and time the resource was created. [optional][readonly]
from_business_id String Unique ID for the subject business. [optional]
from_person_id String Unique ID for the subject person. [optional]
id String Relationship unique identifier. [optional][readonly]
last_updated_time Time The date and time the resource was last updated. [optional][readonly]
metadata Object Optional field to store additional information about the resource. Intended to be used by the integrator to store non-sensitive data. [optional]
relationship_type RelationshipTypes
tenant String The id of the tenant containing the resource. This is relevant for Fintechs that have multiple workspaces. [optional]
to_business_id String Unique ID for the related business. [optional]
to_person_id String Unique ID for the related person. [optional]

Example

require 'synctera'

instance = Synctera::PayerPayeeRelationship.new(
  additional_data: null,
  creation_time: 2010-05-06T12:23:34.321Z,
  from_business_id: 7d943c51-e4ff-4e57-9558-08cab6b963c7,
  from_person_id: 7d943c51-e4ff-4e57-9558-08cab6b963c7,
  id: 7d943c51-e4ff-4e57-9558-08cab6b963c7,
  last_updated_time: 2010-05-06T12:23:34.321Z,
  metadata: null,
  relationship_type: null,
  tenant: abcdef_ghijkl,
  to_business_id: 7d943c51-e4ff-4e57-9558-08cab6b963c7,
  to_person_id: 7d943c51-e4ff-4e57-9558-08cab6b963c7
)