class Icalia::ModelProxy

ModelProxy: Acts as a stand-in for an associated model, which may be awaiting for de-serialization at the time the parent object was being de-serialized

Public Class Methods

new(id:, type:) click to toggle source
# File lib/icalia-sdk-event-core/models/model_proxy.rb, line 10
def initialize(id:, type:)
  @id = id
  @type = type
end