Sha256: 9ac32ddcb0d94e0a78df52f4580201fdbac773ba3f8e7d7e5831f3e7869065bb
Contents?: true
Size: 839 Bytes
Versions: 77
Compression:
Stored size: 839 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2017 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. require_relative './client_synchronization_result_details' require_relative '../mixins/data_property_reader' require_relative '../mixins/links' require_relative '../rest/resource' module GoodData class ClientSynchronizationResult < Rest::Resource include Mixin::Links # Initializes object instance from raw wire JSON # # @param json Json used for initialization def initialize(json, opts = {}) super(opts) @json = json end def details res = client.get(links['details']) client.create(GoodData::ClientSynchronizationResultDetails, res) if res end end end
Version data entries
77 entries across 77 versions & 1 rubygems