class Comet::BucketProperties

def to_hash

Returns:
  • (Hash) - The complete object as a Ruby hash
def to_hash
  ret = {}
  ret['OrganizationID'] = @organization_id
  ret['CreateTime'] = @create_time
  ret['ReadWriteKeyFormat'] = @read_write_key_format
  ret['ReadWriteKey'] = @read_write_key
  ret['Size'] = @size
  @unknown_json_fields.each do |k, v|
    ret[k] = v
  end
  ret
end