etebase_collection_list_response_get_data method

int etebase_collection_list_response_get_data(
  1. Pointer<EtebaseCollectionListResponse> this_,
  2. Pointer<Pointer<EtebaseCollection>> data
)

List of collections included in the response

@param this_ the object handle @paramout data the array to store the collections in

Implementation

int etebase_collection_list_response_get_data(
  ffi.Pointer<EtebaseCollectionListResponse> this_,
  ffi.Pointer<ffi.Pointer<EtebaseCollection>> data,
) {
  return _etebase_collection_list_response_get_data(
    this_,
    data,
  );
}