Sha256: 4be8d0652b141c54b4779c267d7fd4a88e6af0c826c93445e206d6489e7534cd
Contents?: true
Size: 781 Bytes
Versions: 36
Compression:
Stored size: 781 Bytes
Contents
# frozen_string_literal: true # This file is autogenerated by Deimos, Do NOT modify module Schemas; module Response ### Primary Schema Class ### # Autogenerated Schema for Record at com.my-namespace.response.UpdateResponse class UpdateResponse < Deimos::SchemaClass::Record ### Attribute Accessors ### # @return [String] attr_accessor :update_response_id # @override def initialize(update_response_id: nil) super self.update_response_id = update_response_id end # @override def schema 'UpdateResponse' end # @override def namespace 'com.my-namespace.response' end # @override def as_json(_opts={}) { 'update_response_id' => @update_response_id } end end end; end
Version data entries
36 entries across 36 versions & 1 rubygems