Sha256: 132ceb336ca363a6004386e53fe575e4f590212c4d96b8f181c449e0836de57f
Contents?: true
Size: 1.88 KB
Versions: 2
Compression:
Stored size: 1.88 KB
Contents
module AsposeStorageCloud # class BaseResponse < BaseObject attr_accessor :code, :status # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'code' => :'Code', # :'status' => :'Status' } end # attribute type def self.swagger_types { :'code' => :'String', :'status' => :'String' } end def initialize(attributes = {}) return if !attributes.is_a?(Hash) || attributes.empty? # convert string to symbol for hash key attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo} if attributes[:'Code'] self.code = attributes[:'Code'] end if attributes[:'Status'] self.status = attributes[:'Status'] end end def status=(status) allowed_values = ["Continue", "SwitchingProtocols", "OK", "Created", "Accepted", "NonAuthoritativeInformation", "NoContent", "ResetContent", "PartialContent", "MultipleChoices", "Ambiguous", "MovedPermanently", "Moved", "Found", "Redirect", "SeeOther", "RedirectMethod", "NotModified", "UseProxy", "Unused", "TemporaryRedirect", "RedirectKeepVerb", "BadRequest", "Unauthorized", "PaymentRequired", "Forbidden", "NotFound", "MethodNotAllowed", "NotAcceptable", "ProxyAuthenticationRequired", "RequestTimeout", "Conflict", "Gone", "LengthRequired", "PreconditionFailed", "RequestEntityTooLarge", "RequestUriTooLong", "UnsupportedMediaType", "RequestedRangeNotSatisfiable", "ExpectationFailed", "UpgradeRequired", "InternalServerError", "NotImplemented", "BadGateway", "ServiceUnavailable", "GatewayTimeout", "HttpVersionNotSupported"] if status && !allowed_values.include?(status) fail "invalid value for 'status', must be one of #{allowed_values}" end @status = status end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
aspose_storage_cloud-1.0.1 | lib/aspose_storage_cloud/models/base_response.rb |
aspose_storage_cloud-1.0.0 | lib/aspose_storage_cloud/models/base_response.rb |