Sha256: a4b73330fc37b91abf718c199d6d7847ce6c3861cb2608264bb511cdb7134454
Contents?: true
Size: 672 Bytes
Versions: 7
Compression:
Stored size: 672 Bytes
Contents
require_relative 'serialization/parsable' module MicrosoftKiotaAbstractions class ApiError < StandardError include MicrosoftKiotaAbstractions::Parsable ## ## The deserialization information for the current model ## @return a i_dictionary ## def get_field_deserializers() return Hash.new end ## ## Serializes information the current object ## @param writer Serialization writer to use to serialize this model ## @return a void ## def serialize(writer) raise StandardError, 'writer cannot be null' if writer.nil? end end end
Version data entries
7 entries across 7 versions & 1 rubygems