import * as factory from '../factory'; export interface ISetProfileParams { /** * 取引ID */ id: string; /** * プロフィール */ agent: factory.person.IProfile & { /** * CLDR two-letter region code */ telephoneRegion?: string; }; } /** * 取引抽象サービス */ export declare abstract class TransactionService { typeOf: factory.transactionType; /** * 取引人プロフィール変更 */ abstract setProfile(params: ISetProfileParams): Promise; }