示例#1
0
        /// <summary>
        /// Gets the friendship status of the user and the bot linked to your LINE Login channel.
        ///
        /// The "profile" scope is required to perform this operation.
        /// </summary>
        /// <param name="action">
        /// The callback action to be invoked when this API finishes.
        /// </param>
        public static void GetBotFriendshipStatus(Action <Result <BotFriendshipStatus> > action)
        {
            var identifier = AddAction(FlattenAction.JsonFlatten <BotFriendshipStatus>(action));

            NativeInterface.GetBotFriendshipStatus(identifier);
        }