class SubmitUboDeclarationRequest

Model object for body of request to submit a UBO declaration for approval

Attributes

id[RW]

Id of the ubo declaration

tag[RW]
String

Custom data added with the request

Public Class Methods

new(id, tag = nil) click to toggle source
# File lib/mangopay/model/request/submit_ubo_declaration_request.rb, line 12
def initialize(id, tag = nil)
  self.id = id
  self.tag = tag
  @status = MangoModel::UboDeclarationStatus::VALIDATION_ASKED
end