
POST /api/v1/summits/{id}/attendees payload * member_id ( int | required ) * share_contact_info ( boolean | optional ) * summit_hall_checked_in ( boolean | optional ) * summit_hall_checked_in_date ( epoch | optional ) Change-Id: Ie71d33941f8cc2dbe74446eefc747e306025f17f
41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?php namespace models\summit;
|
|
/**
|
|
* Copyright 2016 OpenStack Foundation
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
use models\main\Member;
|
|
use models\utils\IBaseRepository;
|
|
use utils\Filter;
|
|
use utils\Order;
|
|
use utils\PagingInfo;
|
|
use utils\PagingResponse;
|
|
/**
|
|
* Class ISummitAttendeeRepository
|
|
* @package models\summit
|
|
*/
|
|
interface ISummitAttendeeRepository extends IBaseRepository
|
|
{
|
|
/**
|
|
* @param Summit $summit
|
|
* @param PagingInfo $paging_info
|
|
* @param Filter|null $filter
|
|
* @param Order|null $order
|
|
* @return PagingResponse
|
|
*/
|
|
public function getBySummit(Summit $summit, PagingInfo $paging_info, Filter $filter = null, Order $order = null);
|
|
|
|
/**
|
|
* @param Summit $summit
|
|
* @param Member $member
|
|
* @return SummitAttendee
|
|
*/
|
|
public function getBySummitAndMember(Summit $summit, Member $member);
|
|
} |