spec/codegen/crm/quotes/api/basic_api_spec.rb in hubspot-api-client-9.6.0 vs spec/codegen/crm/quotes/api/basic_api_spec.rb in hubspot-api-client-10.0.0
- old
+ new
@@ -37,14 +37,13 @@
# Read an Object identified by `{quoteId}`. `{quoteId}` refers to the internal object ID by default, or optionally any unique property value as specified by the `idProperty` query param. Control what is returned via the `properties` query param.
# @param quote_id
# @param [Hash] opts the optional parameters
# @option opts [Array<String>] :properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored.
# @option opts [Array<String>] :associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored.
- # @option opts [Boolean] :paginate_associations
# @option opts [Boolean] :archived Whether to return only results that have been archived.
# @option opts [String] :id_property The name of a property whose values are unique for this object type
- # @return [SimplePublicObject]
+ # @return [SimplePublicObjectWithAssociations]
describe 'get_by_id test' do
it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end
@@ -55,12 +54,11 @@
# @param [Hash] opts the optional parameters
# @option opts [Integer] :limit The maximum number of results to display per page.
# @option opts [String] :after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results.
# @option opts [Array<String>] :properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored.
# @option opts [Array<String>] :associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored.
- # @option opts [Boolean] :paginate_associations
# @option opts [Boolean] :archived Whether to return only results that have been archived.
- # @return [CollectionResponseSimplePublicObject]
+ # @return [CollectionResponseSimplePublicObjectWithAssociationsForwardPaging]
describe 'get_page test' do
it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end